We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ad92ad commit b8e6894Copy full SHA for b8e6894
Jenkinsfile Jenkinsfile.template
@@ -1,32 +1,32 @@
1
pipeline {
2
agent {
3
node {
4
- label 'python-agent'
+ label 'jenkins-agent-goes-here'
5
}
6
7
stages {
8
stage('Build') {
9
steps {
10
- echo 'Building..'
+ echo "Building.."
11
sh '''
12
- cd myapp
13
- pip install -r requirements.txt
+ echo "doing build stuff.."
14
'''
15
16
17
stage('Test') {
18
19
- echo 'Testing..'
+ echo "Testing.."
20
21
22
- python3 hello.py
23
- python3 hello.py --name=Brad
+ echo "doing test stuff..
24
25
26
27
stage('Deliver') {
28
29
echo 'Deliver....'
+ sh '''
+ echo "doing delivery stuff.."
+ '''
30
31
32
0 commit comments