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
environment {
SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials')
registryCredential = credentials('docker-gitea-creds')
}
options {
skipDefaultCheckout(true)
@ -14,7 +15,7 @@ pipeline {
cleanWs()
checkout scm
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')
customImage.push()
}
@ -30,7 +31,7 @@ pipeline {
}
}
stage('Build snap packages') {
// when { expression { false == true } }
when { expression { false == true } }
parallel {
stage('Build snap for ARM64') {
agent { label "snap-arm64" }