aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index faf5ecd29..85880c4fe 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Download LLVM
- run: sudo apt-get install llvm-11 clang-11 llvm
+ run: sudo apt-get install llvm-12.0.1 clang-12.0.1 llvm
- name: build odin
run: make release
- name: Odin run
@@ -22,8 +22,8 @@ jobs:
- uses: actions/checkout@v1
- name: Download LLVM and setup PATH
run: |
- brew install llvm@11
- echo "/usr/local/opt/llvm@11/bin" >> $GITHUB_PATH
+ brew install llvm@12.0.1
+ echo "/usr/local/opt/llvm@12.0.1/bin" >> $GITHUB_PATH
TMP_PATH=$(xcrun --show-sdk-path)/user/include
echo "CPATH=$TMP_PATH" >> $GITHUB_ENV
- name: build odin