diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..f7df9dda94805a768cc576b82d92fbd8bde205ae --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,27 @@ +image: "rust:latest" + +stages: + - lint + - build + +before_script: + - rustup target add wasm32-unknown-unknown + - rustup component add rustfmt + - rustup component add clippy + +lint: + stage: lint + script: + - cargo fmt -- --check + - cargo clippy --all-features -- -D warnings + +build: + stage: build + script: + - cargo build --release + - make + - cargo run --release -- --out out.gif + artifacts: + paths: + - out.gif + - target/rapidriter-cat.wat