Skip to content

Commit

Permalink
GitHub Workflows: Update and fix macOS workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
KimonHoffmann committed Aug 28, 2024
1 parent 83a4444 commit 6ebb6aa
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,32 @@ jobs:
- uses: actions/checkout@v3

- name: Install Dependencies (Ubuntu)
if: startsWith(matrix.config.os, 'ubuntu')
shell: bash
if: ${{ startsWith(matrix.config.os, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build qtbase5-dev
- name: Install Dependencies (macOS)
if: startsWith(matrix.config.os, 'macos')
if: ${{ startsWith(matrix.config.os, 'macos') }}
run: |
brew install cmake ninja qt@5
brew link --force qt@5
sudo ln -s "$(brew --prefix qt@5)/mkspecs" /usr/local
sudo ln -s "$(brew --prefix qt@5)/plugins" /usr/local
- name: Install Dependencies (Windows)
if: startsWith(matrix.config.os, 'windows')
if: ${{ startsWith(matrix.config.os, 'windows') }}
run: |
choco install cmake ninja qt5-default
- name: Configure
if: ${{ !startsWith(matrix.config.os, 'macos') }}
run: cmake -G "${{matrix.config.generator}}" -B "${{github.workspace}}/build" -DCMAKE_BUILD_TYPE=${{matrix.build_type}}

- name: Configure (macOS)
if: ${{ startsWith(matrix.config.os, 'macos') }}
run: PATH=/opt/homebrew/bin:${{'${PATH}'}} cmake -G "${{matrix.config.generator}}" -B "${{github.workspace}}/build" -DCMAKE_BUILD_TYPE=${{matrix.build_type}}

- name: Build
run: cmake --build "${{github.workspace}}/build" --config "${{matrix.build_type}}"

0 comments on commit 6ebb6aa

Please sign in to comment.