From 1c2872035f96e4da84540ddacb99b060cad9c84b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Mon, 1 Mar 2021 11:30:16 +0000 Subject: [PATCH] Update Semaphore configuration --- .semaphore/semaphore.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index c5557840..0183795d 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -23,6 +23,7 @@ blocks: jobs: - name: Run clippy commands: + - checkout - rustup component add clippy - cargo clippy - name: Build nalgebra (native) @@ -31,6 +32,7 @@ blocks: jobs: - name: Install deps commands: + - checkout - apt-get install -y cmake gfortran libblas-dev liblapack-dev - name: Build --no-default-feature commands: @@ -47,6 +49,7 @@ blocks: jobs: - name: Build --all-features commands: + - checkout - cargo build -p nalgebra-glm --all-features - name: Build nalgebra-lapack (native) dependencies: [] @@ -54,5 +57,6 @@ blocks: jobs: - name: Build commands: + - checkout - cd nalgebra-lapack - cargo build