diff options
| author | Andre Weissflog <floooh@gmail.com> | 2023-03-18 16:35:34 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2023-03-18 16:35:34 +0100 |
| commit | 35723d2fbd3828bf4093e16809d84eaba9f3a707 (patch) | |
| tree | ca89d2237a0886a9132786da958619281881190e /.github | |
| parent | 35fbc3c90604e8d3129db0a985cc43a9d56e37a3 (diff) | |
odin bindings generation: update odin version to 2023-03
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index de2ccf20..f0a1c250 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -150,7 +150,7 @@ jobs: run: | sudo apt-get update sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev mesa-common-dev xorg-dev libasound-dev llvm-11 - curl -L https://github.com/odin-lang/Odin/releases/download/dev-2022-08/odin-ubuntu-amd64-dev-2022-08.zip --output odin.zip + curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-03/odin-ubuntu-amd64-dev-2023-03.zip --output odin.zip unzip odin.zip chmod a+x odin ./build_clibs_linux.sh @@ -158,7 +158,7 @@ jobs: name: prepare-macos run: | brew install llvm@11 - curl -L https://github.com/odin-lang/Odin/releases/download/dev-2022-08/odin-macos-amd64-dev-2022-08.zip --output odin.zip + curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-03/odin-macos-amd64-dev-2023-03.zip --output odin.zip unzip odin.zip chmod a+x odin ./build_clibs_macos.sh @@ -166,7 +166,7 @@ jobs: name: prepare-windows shell: cmd run: | - curl -L https://github.com/odin-lang/Odin/releases/download/dev-2022-08/odin-windows-amd64-dev-2022-08.zip --output odin.zip + curl -L https://github.com/odin-lang/Odin/releases/download/dev-2023-03/odin-windows-amd64-dev-2023-03.zip --output odin.zip unzip odin.zip build_clibs_windows.cmd - name: build |