Skip to content

Commit 245b3fe

Browse files
committed
Separate out installation of project dependencies
1 parent 2af23f1 commit 245b3fe

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/build_test.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
restore-keys: |
3232
${{ runner.os }}-apt-
3333
34-
- name: Install Dependencies
34+
- name: Install Base Dependencies
3535
run: |
3636
sudo apt-get update && sudo apt-get upgrade -y
3737
sudo apt-get update && apt-get install -y --no-install-recommends \
@@ -42,11 +42,10 @@ jobs:
4242
mesa-utils \
4343
gettext-base
4444
45-
# Install dependencies listed in dependencies.txt
46-
# Make sure dependencies.txt is at the root of your repo or update the path accordingly
47-
envsubst < /tmp/dependencies.txt | xargs apt-get install -y --no-install-recommends
48-
4945
46+
- name: Install Project Dependencies
47+
run: |
48+
envsubst < /tmp/dependencies.txt | xargs sudo apt-get install -y --no-install-recommends
5049
5150
- name: Initialize submodules
5251
run: |

0 commit comments

Comments
 (0)