Skip to content
Snippets Groups Projects
Commit a7058317 authored by NiseVoid's avatar NiseVoid
Browse files

Another attempt at making CI work

parent a3cfac87
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,10 @@ jobs: ...@@ -18,7 +18,10 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: dtolnay/rust-toolchain@1.70 - uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.70.0
components: clippy, rustfmt
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
...@@ -28,7 +31,7 @@ jobs: ...@@ -28,7 +31,7 @@ jobs:
~/.cargo/registry/cache/ ~/.cargo/registry/cache/
~/.cargo/git/db/ ~/.cargo/git/db/
target/ target/
key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }} key: ${{ runner.os }}-cargo-build-${{steps.toolchain.outputs.cachekey}}-${{ hashFiles('**/Cargo.toml') }}
- name: Install alsa and udev - name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
if: runner.os == 'linux' if: runner.os == 'linux'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment