mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Attempt to fix tests
Tests currently fail with some apt error: > E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? This change would add the suggested `apt-get update`
This commit is contained in:
parent
06f5aa9c90
commit
53f516e5de
1 changed files with 1 additions and 1 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -60,7 +60,7 @@ jobs:
|
||||||
toolchain: ${{ matrix.toolchain }}
|
toolchain: ${{ matrix.toolchain }}
|
||||||
override: true
|
override: true
|
||||||
- name: Install developer package dependencies
|
- name: Install developer package dependencies
|
||||||
run: sudo apt-get install libpulse-dev portaudio19-dev libasound2-dev libsdl2-dev gstreamer1.0-dev libgstreamer-plugins-base1.0-dev
|
run: sudo apt-get update && sudo apt-get install libpulse-dev portaudio19-dev libasound2-dev libsdl2-dev gstreamer1.0-dev libgstreamer-plugins-base1.0-dev
|
||||||
- run: cargo build --locked --no-default-features
|
- run: cargo build --locked --no-default-features
|
||||||
- run: cargo build --locked --examples
|
- run: cargo build --locked --examples
|
||||||
- run: cargo build --locked --no-default-features --features "with-tremor"
|
- run: cargo build --locked --no-default-features --features "with-tremor"
|
||||||
|
|
Loading…
Reference in a new issue