Run all scripts in current shell

pull/218/head
James Ball 2024-02-10 12:24:09 +00:00
rodzic 1d2738f0a5
commit 66acec06b0
3 zmienionych plików z 10 dodań i 6 usunięć

Wyświetl plik

@ -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
@ -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
@ -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

Wyświetl plik

@ -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"

Wyświetl plik

@ -39,3 +39,5 @@ if [ "$OS" = "win" ]; then
# Run the test using the .exe file
./$PLUGIN.exe
fi
cd "$ROOT"