Compare commits

..

No commits in common. "1db11c1178e9bd8d061abe0af54356418c01e913" and "ec2dfcec42e894449f11c64c62eab37f7f6a2cd5" have entirely different histories.

5
Jenkinsfile vendored
View file

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