Skip to content

Commit de6303b

Browse files
committed
fix github runner on linux
1 parent 455299f commit de6303b

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,16 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
19-
- name: Install ALSA dev libraries
20-
run: sudo apt-get update && sudo apt-get install -y libasound2-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
21-
- name: Build
22-
run: cargo build --verbose
23-
- name: Run tests
24-
run: cargo test --verbose
18+
- uses: actions/checkout@v3
19+
- name: Install system libraries
20+
run: sudo apt-get update && sudo apt-get install -y \
21+
libclang-dev \
22+
libgtk-3-dev \
23+
libxcb-render0-dev \
24+
libxcb-shape0-dev \
25+
libxcb-xfixes0-dev \
26+
libxkbcommon-dev \
27+
libssl-dev \
28+
libudev-dev
29+
- name: Run tests
30+
run: cargo test --verbose

0 commit comments

Comments
 (0)