Compare commits
2 commits
ec2dfcec42
...
1db11c1178
Author | SHA1 | Date | |
---|---|---|---|
1db11c1178 | |||
ca48c2e8d8 |
1 changed files with 2 additions and 3 deletions
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
|
@ -2,7 +2,6 @@ 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)
|
||||||
|
@ -15,7 +14,7 @@ pipeline {
|
||||||
cleanWs()
|
cleanWs()
|
||||||
checkout scm
|
checkout scm
|
||||||
script {
|
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')
|
def customImage = docker.build('git.dreamfall.space/thrrgilag/partybot:latest')
|
||||||
customImage.push()
|
customImage.push()
|
||||||
}
|
}
|
||||||
|
@ -31,7 +30,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" }
|
||||||
|
|
Loading…
Reference in a new issue