forked from Sinono3/souvlaki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66ea3af
commit e92da1a
Showing
1 changed file
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,10 @@ jobs: | |
uses: actions/checkout@v3 | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: dsherret/rust-toolchain-file@v1 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libdbus-1-dev pkg-config | ||
- name: Run clippy | ||
uses: actions-rs/[email protected] | ||
with: | ||
|
@@ -59,16 +63,16 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install Dependencies | ||
if: ${{ runner.os == 'Linux' }} | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libdbus-1-dev pkg-config | ||
- name: Build | ||
run: cargo build --release --all-targets --verbose | ||
- name: Build zbus | ||
if: ${{ runner.os == 'Linux' }} | ||
run: cargo build --release --all-targets --verbose --no-default-features --features=use_zbus | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install Dependencies | ||
if: ${{ runner.os == 'Linux' }} | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libdbus-1-dev pkg-config | ||
- name: Build | ||
run: cargo build --release --all-targets --verbose | ||
- name: Build zbus | ||
if: ${{ runner.os == 'Linux' }} | ||
run: cargo build --release --all-targets --verbose --no-default-features --features=use_zbus |