Browse Source

Add "Prepare" stage to Jenkins.

pass-iguana-arg
Artem Pikulin 7 years ago
parent
commit
7d01a4d31e
  1. 5
      Jenkinsfile

5
Jenkinsfile

@ -1,6 +1,11 @@
pipeline {
agent any
stages {
stage('Prepare') {
steps {
cp -r /root/.env .env
cat .env
}
stage('Build') {
steps {
sh '''git submodule update --init --recursive

Loading…
Cancel
Save