Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
sudo apt-get install libdbus-1-dev -y
sudo apt-get install libssl-dev -y
sudo apt-get install pkg-config -y
sudo apt-get install libxkbcommon-dev -y
- run: cargo install cargo-deb
- run: cargo install cargo-generate-rpm

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y libdbus-1-dev
- run: sudo apt-get install -y libdbus-1-dev libxkbcommon-dev
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand All @@ -35,7 +35,7 @@ jobs:
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y libdbus-1-dev
- run: sudo apt-get install -y libdbus-1-dev libxkbcommon-dev
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand All @@ -47,7 +47,7 @@ jobs:
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y libdbus-1-dev
- run: sudo apt-get install -y libdbus-1-dev libxkbcommon-dev
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --all-features --workspace
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/target
/**/target
src/bundle/logo.argb32
lcov.info
Loading