Skip to content

Commit

Permalink
use v8 on Balfrin
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasjucker committed Jan 31, 2025
1 parent 6ed9b0f commit a9b04f2
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,6 @@ pipeline {
"""
}
}
stage('Create uenv') {
steps {
sh """
git clone -b fix/jenkins https://github.com/eth-cscs/uenv.git
./uenv/install --yes --destdir=$WORKSPACE
source $WORKSPACE/etc/profile.d/uenv.sh
uenv repo create
uenv image pull mch/v8:rc4
"""
}
}
stage('Bootstrap spack') {
// Bootstrapping spack is a separate stage to avoid problems with concurrently bootstrapping spack in the tests.
steps {
Expand All @@ -60,20 +49,18 @@ pipeline {
stage('Integration Tests') {
steps {
sh """
source $WORKSPACE/etc/profile.d/uenv.sh
source ./setup-env.sh /user-environment
source ./setup-env.sh /mch-environment/v8
source .venv/bin/activate
uenv run mch/v8:rc4 -- pytest -v -n auto test/integration_test.py
pytest -v -n auto test/integration_test.py
"""
}
}
stage('System Tests') {
steps {
sh """
source $WORKSPACE/etc/profile.d/uenv.sh
source ./setup-env.sh /user-environment
source ./setup-env.sh /mch-environment/v8
source .venv/bin/activate
uenv run mch/v8:rc4 -- pytest -v -n auto test/system_test.py
pytest -v -n auto test/system_test.py
"""
}
}
Expand Down

0 comments on commit a9b04f2

Please sign in to comment.