We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c25ee commit dca91bcCopy full SHA for dca91bc
1 file changed
.github/workflows/ci.yaml
@@ -145,7 +145,11 @@ jobs:
145
uses: dtolnay/rust-toolchain@stable
146
147
- name: Install dependencies
148
- run: sudo apt-get update; sudo apt-get install --no-install-recommends build-essential curl wget file libssl-dev
+ run: |
149
+ sudo apt-get update
150
+ sudo apt-get install --no-install-recommends -y \
151
+ build-essential curl wget file libssl-dev \
152
+ libegl1-mesa-dev libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers
153
154
- name: Retrieve Cache for Slang
155
uses: actions/cache/restore@v4
@@ -159,4 +163,4 @@ jobs:
159
163
sweep-cache: true
160
164
- name: Run Cargo Tests
161
165
run: |
162
- SLANG_DIR=$SLANG_DIR cargo test --verbose
166
+ SLANG_DIR=$SLANG_DIR LIBGL_ALWAYS_SOFTWARE=1 cargo test --verbose
0 commit comments