diff options
| author | Andre Weissflog <floooh@gmail.com> | 2023-08-28 13:23:19 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2023-08-28 13:23:32 +0200 |
| commit | 0aa93b309088c16db19b80526ed340570959e3a7 (patch) | |
| tree | a0db6812e892a85caafab6b51f5fd11f28257fcb /.github | |
| parent | 58d9f411f3cba791c592ca8e485a1cbad2d0adf1 (diff) | |
bindings gh actions: temporarily remove macos from odin test matrix
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 86096b94..57e7d271 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -150,7 +150,9 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # FIXME: macOS Odin vs Homebrew LLVM currently seems broken + # os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 @@ -174,7 +176,7 @@ jobs: name: prepare-macos run: | brew install llvm@14 - curl -L https://f001.backblazeb2.com/file/odin-binaries/nightly/odin-macos-amd64-nightly%2B2023-08-27.zip --output odin.zip + 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 |