aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2023-08-28 12:19:58 +0200
committerAndre Weissflog <floooh@gmail.com>2023-08-28 12:19:58 +0200
commit03c0efd842e884dd4e973f23f5874f0f28b7a71a (patch)
treef56f236becca1e484b7f2769af05d61437ad7151 /.github
parent660401c96a0df7f3ebe8f1e9e5391ca870c0ed46 (diff)
fix ci scripts for odin installation
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gen_bindings.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml
index c1c45d6d..7d96ae86 100644
--- a/.github/workflows/gen_bindings.yml
+++ b/.github/workflows/gen_bindings.yml
@@ -165,16 +165,16 @@ jobs:
name: prepare-linux
run: |
sudo apt-get update
- sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev llvm-11
- curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-07/odin-ubuntu-amd64-dev-2023-07.zip --output odin.zip
+ sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev llvm-14
+ curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-08/odin-ubuntu-amd64-dev-2023-08.zip --output odin.zip
unzip odin.zip
chmod a+x ./odin
./build_clibs_linux.sh
- if: runner.os == 'macOS'
name: prepare-macos
run: |
- brew install llvm@11
- curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-07/odin-macos-amd64-dev-2023-07.zip --output odin.zip
+ brew install llvm@14
+ curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-08/odin-macos-amd64-dev-2023-08.zip --output odin.zip
unzip odin.zip
chmod a+x ./odin
./build_clibs_macos.sh
@@ -182,7 +182,7 @@ jobs:
name: prepare-windows
shell: cmd
run: |
- curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-07/odin-windows-amd64-dev-2023-07.zip --output odin.zip
+ curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-08/odin-windows-amd64-dev-2023-08.zip --output odin.zip
unzip odin.zip
build_clibs_windows.cmd
- name: build