From dc7de82f764beadf30c5ef61e76a01adf75576dc Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Thu, 6 May 2021 19:25:40 -0700 Subject: [PATCH 1/1] add gitlab ci --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..5605a1c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +stages: + - build + +rust-latest: + stage: build + image: rust:latest + script: + - cargo build --verbose --features=fma,f16,ir + - cargo test --verbose --features=fma,f16,ir + +rust-nightly: + stage: build + image: rustlang/rust:nightly + script: + - cargo build --verbose --features=stdsimd + - cargo test --verbose --features=stdsimd -- 2.30.2