Skip to content

Commit 20091c4

Browse files
Merge pull request #1692 from ral-facilities/fix-ci-libgconf
Remove libgconf install step on CI jobs
2 parents 44b11eb + a0585dc commit 20091c4

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

.github/workflows/ci-build.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ jobs:
2222
cache: 'yarn'
2323

2424
- name: Install dependencies
25-
# Ubuntu 16+ does not install libgconf-2-4 by default, so we need to install it ourselves (for Cypress)
26-
run: |
27-
sudo apt-get install libgconf-2-4
28-
yarn --immutable
25+
run: yarn --immutable
2926

3027
# Linting and unit testing
3128
- name: Run linting
@@ -174,10 +171,7 @@ jobs:
174171
cache: 'yarn'
175172

176173
- name: Install dependencies
177-
# Ubuntu 16+ does not install libgconf-2-4 by default, so we need to install it ourselves (for Cypress)
178-
run: |
179-
sudo apt-get install libgconf-2-4
180-
yarn --immutable
174+
run: yarn --immutable
181175

182176
- name: Run datagateway-dataview e2e tests
183177
run: yarn workspace datagateway-dataview run e2e
@@ -342,10 +336,7 @@ jobs:
342336
cache: 'yarn'
343337

344338
- name: Install dependencies
345-
# Ubuntu 16+ does not install libgconf-2-4 by default, so we need to install it ourselves (for Cypress)
346-
run: |
347-
sudo apt-get install libgconf-2-4
348-
yarn --immutable
339+
run: yarn --immutable
349340

350341
- name: Run datagateway-download e2e tests
351342
run: yarn workspace datagateway-download run e2e
@@ -475,10 +466,7 @@ jobs:
475466
cache: 'yarn'
476467

477468
- name: Install dependencies
478-
# Ubuntu 16+ does not install libgconf-2-4 by default, so we need to install it ourselves (for Cypress)
479-
run: |
480-
sudo apt-get install libgconf-2-4
481-
yarn --immutable
469+
run: yarn --immutable
482470

483471
- name: Run datagateway-search e2e tests
484472
run: yarn workspace datagateway-search run e2e

.github/workflows/release-build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@ jobs:
2323
cache: 'yarn'
2424

2525
- name: Install dependencies
26-
# Ubuntu 16+ does not install libgconf-2-4 by default, so we need to install it ourselves (for Cypress)
27-
run: |
28-
sudo apt-get install libgconf-2-4
29-
yarn --immutable
26+
run: yarn --immutable
3027

3128
- name: Determine tag name
3229
run: |

0 commit comments

Comments
 (0)