We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d316be commit c9945a9Copy full SHA for c9945a9
.github/workflows/deploy.yml
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Install alsa.pc on Ubuntu
43
if: matrix.os == 'ubuntu-latest'
44
- run: sudo apt-get install -y libasound2-dev libudev-dev librust-alsa-sys-dev
+ run: sudo apt-get install -y libasound2-dev libudev-dev librust-alsa-sys-dev && export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig/
45
46
- name: Install Rust
47
# Or @nightly if you want
@@ -52,11 +52,7 @@ jobs:
52
targets: ${{ matrix.target }}
53
54
- name: Build
55
- uses: actions-rs/cargo@v1
56
- with:
57
- use-cross: true
58
- command: build
59
- args: --verbose --release --target ${{ matrix.target }}
+ run: cargo build --verbose --release --target ${{ matrix.target }}
60
61
- name: Run tests
62
run: cargo test --verbose
0 commit comments