Skip to content

Commit

Permalink
ci: don't load dependencies dynamically on macOS, but link to them
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed Jan 3, 2025
1 parent a94f8d8 commit 6e92493
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cmake: '-DSDLIMAGE_BACKEND_STB=OFF -DSDLIMAGE_BACKEND_WIC=OFF -DSDLIMAGE_AVIF=ON -G "Ninja Multi-Config"' }
- { name: Linux, os: ubuntu-latest, shell: sh, vendored: false, cmake: '-GNinja', shared: 1, static: 0, noavif: true, nojxl: true, artifact: 'SDL3_image-linux-x64' }
- { name: 'Linux (static)', os: ubuntu-latest, shell: sh, vendored: true, cmake: '-DBUILD_SHARED_LIBS=OFF -GNinja', shared: 0, static: 1, artifact: 'SDL3_image-static-linux-x64' }
- { name: Macos, os: macos-latest, shell: sh, vendored: false, cmake: '-GNinja', shared: 1, static: 0, artifact: 'SDL3_image-macos' }
- { name: Macos, os: macos-latest, shell: sh, vendored: false, cmake: '-DSDLIMAGE_DEPS_SHARED=OFF -GNinja', shared: 1, static: 0, artifact: 'SDL3_image-macos' }

steps:

Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
version: 3-head
sdl-test: true
shell: ${{ matrix.platform.shell }}
- name: Set up Macos dependencies
- name: Set up macOS dependencies
if: ${{ runner.os == 'macOS' && !matrix.platform.vendored }}
run: |
brew install \
Expand Down

0 comments on commit 6e92493

Please sign in to comment.