Skip to content
Snippets Groups Projects
Commit 3ad58a3b authored by Lars Bilke's avatar Lars Bilke
Browse files

[eve] Install numpy into venv in source dir.

Fixes frontend CI job.
parent 9ae85bf1
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,7 @@ build linux frontend:
BUILD_PACKAGE: "false"
CCACHE_DIR: "/data/ogs/.ccache"
CMAKE_PRESET: release
CTEST_ARGS: "--label-exclude python_modules" # pip installed modules segfault
CMAKE_ARGS: "-DOGS_CPU_ARCHITECTURE=generic"
CTEST_EXCLUDE_REGEX: "nb-"
before_script:
- source scripts/env/eve/cli.sh
......@@ -31,6 +29,5 @@ build linux frontend petsc:
CCACHE_DIR: "/data/ogs/.ccache"
CMAKE_PRESET: release-petsc
CMAKE_ARGS: "-DOGS_CPU_ARCHITECTURE=generic"
CTEST_EXCLUDE_REGEX: "nb-"
before_script:
- source scripts/env/eve/petsc.sh
......@@ -10,3 +10,8 @@ module load Ninja/1.11.1
module load ccache/3.3.3
module load git-lfs
module load Python/3.10.8
# Python dependencies
virtualenv .venv
source .venv/bin/activate
pip install numpy
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment