Skip to content

Commit

Permalink
CI: Add dependency install step
Browse files Browse the repository at this point in the history
  • Loading branch information
crumblingstatue committed Oct 15, 2024
1 parent 1701333 commit fed673b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install libpthread-stubs0-dev libgl1-mesa-dev libx11-dev libx11-xcb-dev |
libxcb-image0-dev libxrandr-dev libxcb-randr0-dev libudev-dev libfreetype6-dev |
libglew-dev libjpeg8-dev libgpgme11-dev libopenal-dev libjpeg62 libxcursor-dev |
cmake libclang-dev clang
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit fed673b

Please sign in to comment.