Skip to content

Commit

Permalink
Run all scripts in current shell
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshball committed Feb 10, 2024
1 parent 1d2738f commit 66acec0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
run: |
export OS="linux"
source ./ci/setup-env.sh
./ci/test.sh
./ci/build.sh
source ./ci/test.sh
source ./ci/build.sh
shell: bash
- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand All @@ -44,8 +44,8 @@ jobs:
run: |
export OS="mac"
source ./ci/setup-env.sh
./ci/test.sh
./ci/build.sh
source ./ci/test.sh
source ./ci/build.sh
shell: bash
- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand All @@ -68,8 +68,8 @@ jobs:
run: |
export OS="win"
source ./ci/setup-env.sh
./ci/test.sh
./ci/build.sh
source ./ci/test.sh
source ./ci/build.sh
shell: bash
- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand Down
2 changes: 2 additions & 0 deletions ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,5 @@ if [ "$OS" = "win" ]; then
cp "$ROOT/Builds/VisualStudio2022/x64/Release/Standalone Plugin/$PLUGIN.exe" "$ROOT/bin"
cp -r "$ROOT/Builds/VisualStudio2022/x64/Release/VST3/$PLUGIN.vst3/Contents/x86_64-win/$PLUGIN.vst3" "$ROOT/bin"
fi

cd "$ROOT"
2 changes: 2 additions & 0 deletions ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ if [ "$OS" = "win" ]; then
# Run the test using the .exe file
./$PLUGIN.exe
fi

cd "$ROOT"

0 comments on commit 66acec0

Please sign in to comment.