Skip to content

Commit 09d450a

Browse files
committed
Attempt 2 at fixing Ubuntu GH workflow
1 parent e5fd79e commit 09d450a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/latest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
- uses: actions/setup-node@v2
1515
with:
1616
node-version: '16.x'
17+
- name: Install ubuntu deps
18+
if: contains(matrix.os, 'ubuntu-20.04')
19+
run: sudo apt install mesa-common-dev libglu1-mesa-dev libegl1 libopengl-dev
1720
- name: Install deps
1821
run: npm install
1922
- name: Build nodegui

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
node-version: '16.x'
1616
- name: Install ubuntu deps
17-
if: contains(matrix.os, 'ubuntu')
17+
if: contains(matrix.os, 'ubuntu-20.04')
1818
run: sudo apt install mesa-common-dev libglu1-mesa-dev libegl1 libopengl-dev
1919
- name: Install deps
2020
run: npm install

0 commit comments

Comments
 (0)