Jenkinsfile: Archive artifacts
This commit is contained in:
parent
445fe859a2
commit
79a4139ade
1 changed files with 3 additions and 0 deletions
3
.ci/Jenkinsfile
vendored
3
.ci/Jenkinsfile
vendored
|
|
@ -12,6 +12,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'gcc -o hello main.c'
|
sh 'gcc -o hello main.c'
|
||||||
|
archiveArtifacts artifacts: 'hello',
|
||||||
|
followSymlinks: false,
|
||||||
|
onlyIfSuccessful: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue