From fdf3908494d35da90a875c568f2ce4fa9b2e4d5a Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 13 Mar 2018 07:23:43 +0200 Subject: [PATCH] This reverts cc052eb4500052793957c16876a1d857e8c6bd60 Turns out debian stable meson package is kinda old. --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a501899..9fb194e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,10 +17,9 @@ variables: # Force regeneration of gresources regardless of artifacts chage - cd hammond-gtk/resources/ && glib-compile-resources --generate resources.xml && cd ../../ - - ./configure --prefix=/usr/local - - make - - cargo test --release -- --test-threads=1 - - cargo test --release -- --test-threads=1 --ignored + - cargo build + - cargo test -- --test-threads=1 + - cargo test -- --test-threads=1 --ignored stable:test: # https://hub.docker.com/_/rust/ @@ -38,8 +37,9 @@ rustfmt: image: "registry.gitlab.com/alatiera/rustfmt-oci-image/rustfmt:nightly" stage: lint script: - - rustc --version && cargo --version - - cargo fmt --all -- --write-mode=diff + - rustc -Vv && cargo -Vv + - cargo fmt --version + - cargo fmt --all -- --write-mode=diff # Configure and run clippy on nightly # Only fails on errors atm.