Skip to content

Commit

Permalink
update install qt action
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Jul 28, 2023
1 parent 14db5f8 commit 7a8818b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ on:
jobs:
linux_build:
name: Build Nexus (Linux)
runs-on: ubuntu-18.04 #in order to deploy, need to use oldest supported version
runs-on: ubuntu-20.04 #in order to deploy, need to use oldest supported version

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v3
with:
cache: true
version: '5.15.2'
- name: Install dependencies
run: |
sudo apt-get install -y mesa-common-dev libglu1-mesa-dev libglew-dev
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v3
with:
cache: true
version: '5.15.2'
- name: Install dependencies
run: |
cd ..
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Windows

on:
[push, pull_request]

jobs:
linux_build:
name: Build Nexus (Windows)
Expand All @@ -15,7 +15,10 @@ jobs:
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v3
with:
cache: true
version: '5.15.2'
- name: Install dependencies
run: |
cd ..
Expand Down

0 comments on commit 7a8818b

Please sign in to comment.