Compare commits

..

2 commits

Author SHA1 Message Date
Morgan McMillian 1db11c1178 re-enable snap builds
All checks were successful
dreamfall/partybot/pipeline/head This commit looks good
2022-11-29 22:36:03 -08:00
Morgan McMillian ca48c2e8d8 fix docker credentials again 2022-11-29 22:33:58 -08:00

5
Jenkinsfile vendored
View file

@ -2,7 +2,6 @@ pipeline {
agent none
environment {
SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials')
registryCredential = credentials('docker-gitea-creds')
}
options {
skipDefaultCheckout(true)
@ -15,7 +14,7 @@ pipeline {
cleanWs()
checkout scm
script {
docker.withRegistry('https://git.dreamfall.space/thrrgilag', registryCredential) {
docker.withRegistry('https://git.dreamfall.space/thrrgilag', 'docker-gitea-creds') {
def customImage = docker.build('git.dreamfall.space/thrrgilag/partybot:latest')
customImage.push()
}
@ -31,7 +30,7 @@ pipeline {
}
}
stage('Build snap packages') {
when { expression { false == true } }
// when { expression { false == true } }
parallel {
stage('Build snap for ARM64') {
agent { label "snap-arm64" }