We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af23f1 commit 245b3feCopy full SHA for 245b3fe
.github/workflows/build_test.yml
@@ -31,7 +31,7 @@ jobs:
31
restore-keys: |
32
${{ runner.os }}-apt-
33
34
- - name: Install Dependencies
+ - name: Install Base Dependencies
35
run: |
36
sudo apt-get update && sudo apt-get upgrade -y
37
sudo apt-get update && apt-get install -y --no-install-recommends \
@@ -42,11 +42,10 @@ jobs:
42
mesa-utils \
43
gettext-base
44
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
-
49
+ - name: Install Project Dependencies
+ run: |
+ envsubst < /tmp/dependencies.txt | xargs sudo apt-get install -y --no-install-recommends
50
51
- name: Initialize submodules
52
0 commit comments