diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/nightly.yml | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d4132a..348a73c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,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 linux: strategy: matrix: @@ -53,7 +53,7 @@ jobs: git clone --depth 1 https://github.com/odin-lang/Odin cd Odin && ./build_odin.sh release - name: Build ols - run: ./build.sh CI + run: ./ci.sh CI macos: strategy: @@ -75,4 +75,4 @@ jobs: git clone --depth 1 https://github.com/odin-lang/Odin cd Odin && ./build_odin.sh release - name: Build ols - run: ./build.sh CI + run: ./ci.sh CI 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: | |