diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nightly.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1e28bd1..75a35f1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -19,7 +19,9 @@ jobs: TMP_PATH=$(xcrun --show-sdk-path)/user/include echo "CPATH=$TMP_PATH" >> $GITHUB_ENV - name: Download Odin - run: git clone https://github.com/odin-lang/Odin + run: | + git clone https://github.com/odin-lang/Odin + git checkout 05ac2002e0296c3acccca1d8cffaafb002e43120 - name: Build Odin run: | cd Odin @@ -44,7 +46,9 @@ jobs: - name: Download LLVM run: sudo apt-get install llvm-11 clang-11 llvm - name: Download Odin - run: git clone https://github.com/odin-lang/Odin + run: | + git clone https://github.com/odin-lang/Odin + git checkout 05ac2002e0296c3acccca1d8cffaafb002e43120 - name: Build Odin run: | cd Odin @@ -68,7 +72,9 @@ jobs: - uses: actions/checkout@v1 - name: Download Odin shell: cmd - run: git clone https://github.com/odin-lang/Odin + run: | + git clone https://github.com/odin-lang/Odin + git checkout 05ac2002e0296c3acccca1d8cffaafb002e43120 - name: Build Odin shell: cmd run: | |