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
|
||||
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" }
|
||||
|
|
Loading…
Reference in a new issue