Add a simple test

This commit is contained in:
iFargle
2023-02-08 12:39:06 +09:00
parent 394c26988d
commit 559efd90a8

6
Jenkinsfile vendored
View File

@@ -26,6 +26,12 @@ pipeline {
}
}
}
stage('Test') {
options { timeout(time: 3, unit: 'MINUTES') }
steps {
dockerImage.inside('cat /etc/hostname')
}
}
stage('Push') {
when { branch 'testing' }
options { timeout(time: 5, unit: 'MINUTES') }