diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-10-04 15:04:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-04 15:04:20 +0200 |
| commit | d5144b06138877c71c729c46dd9653b547bd9fa8 (patch) | |
| tree | 78d55d52a182d1566174a7c7c1c616c844b61dce /.github | |
| parent | 893540ee2e9573720ab379deaa4d595926abefe3 (diff) | |
try to make nightly using old odin version
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: | |