Skip to content

Commit

Permalink
install libnotify in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
TimB87 committed Oct 17, 2023
1 parent 5e2d1f6 commit 4482420
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
rustup update ${{ matrix.toolchain }} && \
rustup default ${{ matrix.toolchain }}
- name: Install libnotify
run: |
sudo apt-get update
sudo apt-get install libnotify-dev
- name: Use cache
uses: Swatinem/rust-cache@v2

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
with:
components: clippy

- name: Install libnotify
run: |
sudo apt-get update
sudo apt-get install libnotify-dev
- name: Use cache
uses: Swatinem/rust-cache@v2

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install libnotify
run: |
sudo apt-get update
sudo apt-get install libnotify-dev
- name: Create packed release binaries
uses: taiki-e/upload-rust-binary-action@v1
with:
Expand Down

0 comments on commit 4482420

Please sign in to comment.