t
Some checks failed
internetmastercz/test/pipeline/head There was a failure building this commit

This commit is contained in:
2021-10-19 23:18:09 +02:00
parent 9a33dfa882
commit b8ac1817d1
2 changed files with 10 additions and 2 deletions

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM node:14-alpine
RUN apk add -U subversion

9
Jenkinsfile vendored
View File

@@ -1,11 +1,16 @@
pipeline {
agent any
agent { dockerfile true }
stages {
stage('Init') {
steps {
sh 'node --version'
}
}
stage('Build') {
steps {
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
echo 'Building..'
sh 'docker info'
}
}
stage('Test') {