Skip to content
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pipeline {
sh 'docker rmi -f bscwdc/dislib &> /dev/null || true'
sh 'docker build --pull --no-cache --tag bscwdc/dislib .'
sh '''#!/bin/bash
docker run $(bash <(curl -s https://codecov.io/env)) -d --name dislib bscwdc/dislib'''
docker run $(bash <(curl -s https://codecov.io/env)) -v /home/jenkins/.ssh:/root/.ssh:ro -d --name dislib bscwdc/dislib'''
}
}
stage('test') {
Expand Down
7 changes: 7 additions & 0 deletions run_ci_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ cd ${root_path}
# Add dislib to the python path
export PYTHONPATH=$PYTHONPATH:${root_path}

echo $HOME
cat ~/.ssh/id_rsa.pub
cat ~/.ssh/authorized_keys

ssh compss@mt1.bsc.es pwd
exit

echo "Running flake8 style check"
./run_style.sh

Expand Down