Skip to content
Snippets Groups Projects
Verified Commit 878659c4 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: removed outdated rust version (1.56.1)

This dependency was creating issues with clap>=4.
parent 6f61040c
No related branches found
No related tags found
1 merge request!16Support for Game Boy Color (CGB) 😎🖍️
Pipeline #2619 failed
......@@ -10,7 +10,6 @@ jobs:
strategy:
matrix:
rust-version: [
"1.56.1",
"1.60.0",
"1.61.0",
"1.62.0",
......
......@@ -26,15 +26,15 @@ build-rust:
stage: build
parallel:
matrix:
- RUST_VERSION: ["1.56.1", "1.60.0", "stable", "nightly"]
- RUST_VERSION: ["1.60.0", "stable", "nightly"]
script:
- rustup toolchain install $RUST_VERSION
- rustup override set $RUST_VERSION
- rustup component add rustfmt
- rustup component add clippy
- rustc --version
- if [[ $RUST_VERSION != "1.56.1" ]]; then cargo fmt --all -- --check; fi
- if [[ $RUST_VERSION != "1.56.1" ]] && [[ $RUST_VERSION != nightly ]]; then cargo clippy -- -D warnings -A unknown-lints; fi
- cargo fmt --all -- --check
- if [[ $RUST_VERSION != nightly ]]; then cargo clippy -- -D warnings -A unknown-lints; fi
- cargo build
- cargo build --release
......@@ -60,7 +60,7 @@ test-rust:
stage: test
parallel:
matrix:
- RUST_VERSION: ["1.56.1", "1.60.0", "stable", "nightly"]
- RUST_VERSION: ["1.60.0", "stable", "nightly"]
script:
- rustup toolchain install $RUST_VERSION
- rustup override set $RUST_VERSION
......
......@@ -35,10 +35,7 @@ lto = true
opt-level = 3
[workspace]
members = [
".",
"frontends/sdl",
]
members = [".", "frontends/sdl"]
[package.metadata.docs.rs]
features = ["wasm", "gen-mock"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment