blob: 584e482ad7ceca5cf789120302bdaf612e7b1d6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pipeline {
agent {
docker { image 'gcc:latest' }
}
stages {
stage('Build') {
steps {
sh 'make -f Makefile'
}
}
stage('Test') {
steps {
sh './main.out'
}
}
}
}
|