Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Jan 4, 2024
1 parent 1e9dfdb commit a1c4dc7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install Linux dependencies
if: contains(matrix.os, 'ubuntu')
run: sudo apt-get install libxkbcommon-x11-0 libgl1-mesa-dev mesa-common-dev libglfw3-dev libglu1-mesa-dev

- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qtver }}
dir: "${{ github.workspace }}/Qt/"
cache: true
cache-key-prefix: ${{ matrix.qtver }}-${{ matrix.os }}

- name: Install Linux dependencies
if: ${{ matrix.os == 'ubuntu'}}
run: sudo apt-get install libxkbcommon-x11-0 libgl1-mesa-dev mesa-common-dev libglfw3-dev libglu1-mesa-dev

- name: Use MSVC (Windows)
uses: ilammy/msvc-dev-cmd@v1

- name: Configure 5.12
if: "contains( matrix.qtver, '5.12')"
if: contains( matrix.qtver, '5.12')
run: |
cmake -S . -B build
Expand Down

0 comments on commit a1c4dc7

Please sign in to comment.