diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..f02a13454901261bc3e1619c1e76190b7424658e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,29 @@ +image: "rust:latest" + +stages: + - test + - build + +before_script: + - apt-get update -q && apt-get install mingw-w64 -yqq + - rustup component add rustfmt + - rustup component add clippy + - rustup target add x86_64-pc-windows-gnu + +test: + stage: test + script: + - cargo fmt -- --check + - cargo clippy --all-targets --all-features -- -D warnings + - cargo test + +build: + stage: build + script: + - cargo build --release + - cargo build --release --target x86_64-pc-windows-gnu + artifacts: + paths: + - target/release/dotacat + - target/x86_64-pc-windows-gnu/release/dotacat.exe + diff --git a/Cargo.toml b/Cargo.toml index 3594911d2141de1715f761f259f288a687018db8..256698ce590f627d577d7a57913c7f3ef400ed92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,6 @@ repository = "https://git.scd31.com/stephen/dotacat" keywords = ["cli", "rainbow", "cat", "colourful", "colorful"] categories = ["command-line-utilities"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] colored = "2.0" rand = "0.7"