BurritOS/.gitlab-ci.yml

35 lines
663 B
YAML
Raw Normal View History

2023-03-08 13:45:36 +01:00
default:
image: rust:1.68
2023-03-08 13:42:20 +01:00
2023-03-08 13:45:36 +01:00
stages:
2023-03-08 13:42:20 +01:00
- test
2023-03-08 13:45:36 +01:00
unit-test-job:
stage: test
2023-03-08 13:42:20 +01:00
script:
- echo "Compiling c files"
- cd test && make build && cd ..
2023-03-08 13:42:20 +01:00
- echo "Running unit tests..."
- cargo test
unsafe-test-job:
stage: test
script:
- echo "Checking if List is still safe"
- rustup +nightly component add miri
- export MIRIFLAGS="-Zmiri-disable-isolation"
2023-03-22 15:47:56 +01:00
- cargo +nightly miri test utility::list::test
only:
changes:
- "src/utility/list.rs"
2023-03-08 13:45:36 +01:00
lint-test-job:
2023-03-10 11:12:49 +01:00
only:
refs:
- merge_requests
2023-03-08 13:45:36 +01:00
stage: test
2023-03-08 13:42:20 +01:00
script:
2023-03-10 11:12:49 +01:00
- echo "Linting code..."
- rustup component add clippy
- cargo clippy -- -D warnings