Update CI to use latest Rust version for type inference compatibility
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
eb1b01687e
commit
438e701b99
|
|
@ -16,7 +16,7 @@ steps:
|
||||||
# Run Tests
|
# Run Tests
|
||||||
test:
|
test:
|
||||||
name: test
|
name: test
|
||||||
image: rust:1.75-bookworm
|
image: rust:latest
|
||||||
commands:
|
commands:
|
||||||
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
||||||
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
||||||
|
|
@ -34,7 +34,7 @@ steps:
|
||||||
# Build Linux x86_64 release binary
|
# Build Linux x86_64 release binary
|
||||||
build-linux-x86_64:
|
build-linux-x86_64:
|
||||||
name: build-linux-x86_64
|
name: build-linux-x86_64
|
||||||
image: rust:1.75-bookworm
|
image: rust:latest
|
||||||
depends_on: [test]
|
depends_on: [test]
|
||||||
commands:
|
commands:
|
||||||
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
||||||
|
|
@ -54,7 +54,7 @@ steps:
|
||||||
# Build Linux aarch64 release binary (cross-compile)
|
# Build Linux aarch64 release binary (cross-compile)
|
||||||
build-linux-aarch64:
|
build-linux-aarch64:
|
||||||
name: build-linux-aarch64
|
name: build-linux-aarch64
|
||||||
image: rust:1.75-bookworm
|
image: rust:latest
|
||||||
depends_on: [test]
|
depends_on: [test]
|
||||||
failure: ignore
|
failure: ignore
|
||||||
commands:
|
commands:
|
||||||
|
|
@ -81,7 +81,7 @@ steps:
|
||||||
# Cargo audit for known vulnerabilities
|
# Cargo audit for known vulnerabilities
|
||||||
cargo-audit:
|
cargo-audit:
|
||||||
name: cargo-audit
|
name: cargo-audit
|
||||||
image: rust:1.75-bookworm
|
image: rust:latest
|
||||||
commands:
|
commands:
|
||||||
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
||||||
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
||||||
|
|
@ -128,7 +128,7 @@ steps:
|
||||||
# Clippy linting
|
# Clippy linting
|
||||||
clippy:
|
clippy:
|
||||||
name: clippy
|
name: clippy
|
||||||
image: rust:1.75-bookworm
|
image: rust:latest
|
||||||
commands:
|
commands:
|
||||||
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
||||||
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
||||||
|
|
@ -142,7 +142,7 @@ steps:
|
||||||
# Format check
|
# Format check
|
||||||
fmt-check:
|
fmt-check:
|
||||||
name: fmt-check
|
name: fmt-check
|
||||||
image: rust:1.75-bookworm
|
image: rust:latest
|
||||||
commands:
|
commands:
|
||||||
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
||||||
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue