Skip to content
Snippets Groups Projects

build the pipelines image from Dockerfile

Merged STEVAN Antoine requested to merge freeze-ci-env-in-docker into main
2 files
+ 2
12
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
11
# WARNING: update `rust-toolchain.toml` as well
image: "rust:1.78"
image: "komodo"
stages:
- fmt
@@ -16,8 +15,6 @@ workflow:
fmt:
stage: fmt
before_script:
- cargo install cargo-script
script:
- ./make.rs fmt --check
@@ -25,14 +22,8 @@ test:
stage: test
needs:
- fmt
before_script:
- apt update --yes
- apt upgrade --yes
- apt install protobuf-compiler --yes
- cargo install cargo-script
- ./make.rs version
script:
- ./make.rs version
- ./make.rs check
- ./make.rs clippy
- ./make.rs test
Loading