diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-07-11 21:08:10 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2024-07-11 21:08:10 +0200 |
| commit | 05a3f89a818b4a42e8c194358a31ecc995d5953b (patch) | |
| tree | de4dcaf027e2b2393762e90c824420c083140088 /.github/workflows/nightly.yml | |
| parent | 28f10b496b051560ad60f35a57a0ffde543b053e (diff) | |
CI should use ci.bat/sh instead
Diffstat (limited to '.github/workflows/nightly.yml')
| -rw-r--r-- | .github/workflows/nightly.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0f1aac0..344e2f8 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -24,7 +24,7 @@ jobs: cd Odin ./build_odin.sh release - name: Build ols - run: ./build.sh CI_NO_TESTS -target:darwin_arm64 -extra-linker-flags:"--target=arm64-apple-macos" + run: ./ci.sh CI_NO_TESTS -target:darwin_arm64 -extra-linker-flags:"--target=arm64-apple-macos" - name: Move to Dist run: | mkdir dist @@ -54,7 +54,7 @@ jobs: cd Odin make release - name: Build ols - run: ./build.sh CI + run: ./ci.sh CI - name: Move to Dist run: | mkdir dist @@ -84,7 +84,7 @@ jobs: cd Odin ./build_odin.sh release - name: Build ols - run: ./build.sh CI + run: ./ci.sh CI - name: Move to Dist run: | mkdir dist @@ -109,10 +109,10 @@ jobs: run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat cd Odin - ./build.bat 1 + ./ci.bat 1 - name: Build ols shell: cmd - run: ./build.bat CI + run: ./ci.bat CI - name: Move to Dist shell: cmd run: | |