Add Rust 1.80.1 to CI

pull/124/head
Tamir Duberstein 7 months ago
parent a73f88d45e
commit 31713b48ea
No known key found for this signature in database

@ -21,6 +21,9 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
rust:
- stable
- 1.80.1
program: program:
- kprobe - kprobe
- kretprobe - kretprobe
@ -49,8 +52,9 @@ jobs:
with: with:
components: rust-src,rustfmt components: rust-src,rustfmt
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@master
with: with:
toolchain: ${{ matrix.rust }}
components: clippy components: clippy
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2

@ -6,7 +6,7 @@ edition = "2021"
[dependencies] [dependencies]
{{project-name}}-common = { path = "../{{project-name}}-common", features = ["user"] } {{project-name}}-common = { path = "../{{project-name}}-common", features = ["user"] }
anyhow = { workspace = true } anyhow = { workspace = true, default-features = true }
aya = { workspace = true } aya = { workspace = true }
aya-log = { workspace = true } aya-log = { workspace = true }
env_logger = {workspace = true } env_logger = {workspace = true }

Loading…
Cancel
Save