-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
49 lines (49 loc) · 1.42 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
pipeline {
agent {
label 'buildah-x64'
}
environment {
GITHUB_TOKEN = credentials('github_token')
}
stages {
stage('Cloning repo...') {
steps {
checkout scm
}
}
stage('Container build') {
steps {
echo 'Building...'
sh '''
sudo buildah bud -t build:latest .
'''
}
}
stage('ISO build') {
steps {
echo 'Executing container...'
sh '''
sudo podman run --volume ./:/repo --privileged --name build --rm build:latest
'''
}
}
stage('Release upload') {
steps {
echo 'Uploading release...'
script {
try {
sh 'gh release delete testing --yes'
} catch (err) {
echo 'Testing release was missing'
} finally {
sh '''
mv live-image-amd64.iso rTS_RescueMedia.iso
gh release create testing --target $GIT_COMMIT --generate-notes --prerelease
gh release upload testing rTS_RescueMedia.iso --clobber
'''
}
}
}
}
}
}