Snippets

Роман Торощин jenkins-ahml-tests-pipeline

Created by Роман Торощин last modified
node {
   checkout([$class: 'GitSCM', branches: [[name: "${BRANCH_MASK}"]], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${CREDENTIALS_ID}", url: 'git@bitbucket.org:ahml/ahml_backend.git']]])
   sh script: 'rm ./app/config/parameters.yml ./tests/.env'
   sh script: 'cp "${PARAMETERS_FILE}" "./app/config/parameters.yml"'
   sh script: 'cp "${ENV_FILE}" "./tests/.env"'
   sh script: '${COMPOSER_BIN} update --prefer-dist -o -n'
   sh script: './app/console doctrine:mapping:info -q'
   sh script: './app/console debug:router -q'
   sh script: './app/console debug:container -q'
   sh script: './bin/codecept build -q -n'
   sh script: './bin/codecept run ${TESTS_SUITE} --report --steps -n --no-colors'
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.