From 38af9c38529c867a3527a6bc6bbbe424b9b70eb8 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 23 Jul 2024 14:15:41 -0500 Subject: [PATCH] Add siphash24 install to Gitlab CI --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f23c64..4af7fc5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ Pytest: # AK, 2020-12-13 rm pytools/mpiwrap.py - export EXTRA_INSTALL="numpy" + export EXTRA_INSTALL="numpy siphash24" curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh . ./build-and-test-py-project.sh tags: @@ -17,6 +17,7 @@ Pytest: Pytest without Numpy: script: | + EXTRA_INSTALL="siphash24" rm pytools/{convergence,spatial_btree,obj_array,mpiwrap}.py curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh . ./build-and-test-py-project.sh @@ -60,7 +61,7 @@ Mypy: Pylint: script: - - EXTRA_INSTALL="numpy pymbolic orderedsets" + - EXTRA_INSTALL="numpy pymbolic orderedsets siphash24" - py_version=3 - curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-pylint.sh - . ./prepare-and-run-pylint.sh "$CI_PROJECT_NAME" @@ -71,7 +72,7 @@ Pylint: Documentation: script: - - EXTRA_INSTALL="numpy" + - EXTRA_INSTALL="numpy siphash24" - curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-docs.sh - ". ./build-docs.sh" tags: -- GitLab