aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Davidson <colrdavidson@gmail.com>2022-03-09 06:52:22 -0800
committerColin Davidson <colrdavidson@gmail.com>2022-03-09 06:52:22 -0800
commit34a9f55f3771c05695f3e4c886b7c067d7aec5e2 (patch)
treebece28941ada17e7d8d8f584881b60142f351092
parent9aea990184b35dadbd786b70730111735fb4fc0a (diff)
Update ci to use build script
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 412587b3c..cbe3fc08c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
- name: Download LLVM, botan
run: sudo apt-get install llvm-11 clang-11 llvm libbotan-2-dev botan
- name: build odin
- run: make release
+ run: ./build_odin.sh release
- name: Odin version
run: ./odin version
timeout-minutes: 1
@@ -55,7 +55,7 @@ jobs:
TMP_PATH=$(xcrun --show-sdk-path)/user/include
echo "CPATH=$TMP_PATH" >> $GITHUB_ENV
- name: build odin
- run: make release
+ run: ./build_odin.sh release
- name: Odin version
run: ./odin version
timeout-minutes: 1