diff --git a/CHANGELOG.md b/CHANGELOG.md index 03d55eff..c4b6fe13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ Unreleased extensions - Allowed entering of `base32` encoded strings containing spaces - Fixed pinentry dialog highlighting some messages incorrectly as errors +- Switched to using GitHub Actions as the project's CI pipeline - Bumped `nitrokey` dependency to `0.9.0` diff --git a/ci/gitlab-ci.yml b/ci/gitlab-ci.yml deleted file mode 100644 index 26d653f7..00000000 --- a/ci/gitlab-ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright (C) 2020-2021 The Nitrocli Developers -# SPDX-License-Identifier: CC0-1.0 - -# The documentation for the contents of this file can be found at: -# https://docs.gitlab.com/ce/ci/yaml/README.html - -# Official language image. Look for the different tagged releases at: -# https://hub.docker.com/r/library/rust/tags/ -# The recipe for this docker image can be found at: -# https://github.com/rust-lang/docker-rust/blob/8bab191937fcf23569d3a3c31103c1c6f7f2947e/1.42.0/buster/Dockerfile -image: "rust:1.42.0" - -build-test:cargo: - script: - - apt-get update - - apt-get install --assume-yes libudev-dev libhidapi-dev - - rustc --version && cargo --version - - cargo build --workspace --bins --tests --verbose - - cargo build --workspace --bins --tests --verbose --release - - cargo test --workspace --verbose - -lint:clippy: - script: - - rustup component add clippy - - cargo clippy --all-targets --all-features -- -A unknown_lints -D warnings - -lint:reuse: - script: - - apt-get update - - apt-get install --assume-yes python3-pip - - pip3 install reuse - - reuse lint - -format:rustfmt: - script: - - rustup component add rustfmt - - cargo fmt -- --check