Skip to content

Commit edc585e

Browse files
authored
Save some time and skip installing packages that are already there only in the Basic Checks build (microsoft#153487)
This reverts commit 42584f1.
1 parent ef560c2 commit edc585e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/basic.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
# TODO: rename azure-pipelines/linux/xvfb.init to github-actions
2323
- name: Setup Build Environment
2424
run: |
25-
sudo apt-get update
26-
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgbm1
2725
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
2826
sudo chmod +x /etc/init.d/xvfb
2927
sudo update-rc.d xvfb defaults

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ jobs:
106106
# TODO: rename azure-pipelines/linux/xvfb.init to github-actions
107107
- name: Setup Build Environment
108108
run: |
109+
sudo apt-get update
110+
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgbm1
109111
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
110112
sudo chmod +x /etc/init.d/xvfb
111113
sudo update-rc.d xvfb defaults

0 commit comments

Comments
 (0)