1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/Jenkinsfile
2022-10-01 18:31:41 +03:00

18 lines
381 B
Groovy

pipeline {
agent any
stages {
stage('phpunit') {
steps {
sh """
docker run --rm \
--volumes-from jenkins-docker_app_1 \
--workdir ${env.WORKSPACE} \
php:8.1-cli \
php ./vendor/bin/phpunit
"""
}
}
}
}