Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienDeepgram committed Jul 14, 2024
1 parent 372ab73 commit 2e6e3c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
sudo apt-get update
sudo apt-get install -yqq alsa
sudo apt-get install -y libasound2-dev pkg-config
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
ls -la $PKG_CONFIG_PATH
- name: Check no features
run: cargo check --all-targets --no-default-features
Expand All @@ -33,7 +33,7 @@ jobs:
sudo apt-get update
sudo apt-get install -yqq alsa
sudo apt-get install -y libasound2-dev pkg-config
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
ls -la $PKG_CONFIG_PATH
- name: Cargo Build
run: cargo build --all-targets --all-features
Expand All @@ -46,7 +46,7 @@ jobs:
sudo apt-get update
sudo apt-get install -yqq alsa
sudo apt-get install -y libasound2-dev pkg-config
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
ls -la $PKG_CONFIG_PATH
- name: Cargo Clippy
run: cargo clippy --all-targets --all-features
Expand All @@ -59,7 +59,7 @@ jobs:
sudo apt-get update
sudo apt-get install -yqq alsa
sudo apt-get install -y libasound2-dev pkg-config
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
ls -la $PKG_CONFIG_PATH
- name: Cargo Test
run: cargo test --all --all-features
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
sudo apt-get update
sudo apt-get install -yqq alsa
sudo apt-get install -y libasound2-dev pkg-config
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
ls -la $PKG_CONFIG_PATH
- name: Install Rust Nightly
run: rustup toolchain install nightly
Expand Down

0 comments on commit 2e6e3c2

Please sign in to comment.