fixup! fixup! Add scripts

This commit is contained in:
R Tyler Croy 2024-04-21 15:51:45 +00:00
parent 77c69e8bdb
commit f72ed151ea
2 changed files with 13 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -13,6 +13,11 @@ pipeline {
checkout scm
}
}
stage('Prepare') {
steps {
sh './ci/setup.sh'
}
}
stage('Build') {
steps {
sh './ci/build.sh'

View File

@ -6,3 +6,11 @@ if [ $? -ne 0 ]; then
cargo install cargo-lambda
fi;
which virtualenv
if [ $? -ne 0 ]; then
echo ">> Virtualenv is required in order to setup cargo-lambda here!"
exit 1;
fi;
virtualenv venv