diff options
| author | gingerBill <bill@gingerbill.org> | 2021-07-10 16:30:54 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-07-10 16:30:54 +0100 |
| commit | 3bf14fa7ec34bff062724fa008a7a55684650509 (patch) | |
| tree | 794f25bb3812d124f751e465035d226e2d37621a /.github/workflows | |
| parent | fa509950981f381cc1ba10882982f156153bc244 (diff) | |
Update CI and Makefile and build.batllvm-12-support
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
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 |