Skip to content

Commit

Permalink
Add siphash24 install to Gitlab CI
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 23, 2024
1 parent ea6bffe commit 38af9c3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit 38af9c3

Please sign in to comment.