Skip to content

Commit 9957f2f

Browse files
committed
ci: install debian_deps.txt if the file exists
1 parent d040064 commit 9957f2f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@ jobs:
136136
${{ runner.os }}-apt-
137137
- name: Install virtual frame buffer tool
138138
run: sudo apt install xvfb
139+
- name: Install potential debian deps
140+
run: |
141+
if [ -f extensions/${{ matrix.extension }}/debian_deps.txt ]; then
142+
sudo apt install $(cat extensions/${{ matrix.extension }}/debian_deps.txt)
143+
fi
139144
- name: Cache rcs build directory
140145
uses: actions/cache@v4
141146
with:

0 commit comments

Comments
 (0)