AriaOS/Jenkinsfile
zontreck 64984f3d8a refactor(adjustment): adjust some build params
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:24:46 -07:00

46 lines
No EOL
842 B
Groovy

pipeline {
agent any
options {
buildDiscarder(
logRotator(
numToKeepStr: '5'
)
)
}
stages {
stage("Clean Up") {
agent {
label 'arch'
}
steps {
script {
sh '''
#!/bin/bash
git clean -xfd
git reset --hard
'''
}
}
}
stage("Build ISO") {
agent {
label 'arch'
}
steps {
script {
sh '''
#!/bin/bash
mkarchiso -v -w work -o out server/profiledef.sh
'''
}
}
}
}
}