Skip to content

Commit

Permalink
fix jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
yakimant committed Jan 18, 2024
1 parent 8b5b551 commit b3e0f69
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 1,072 deletions.
1 change: 0 additions & 1 deletion ci/Jenkinsfile

This file was deleted.

136 changes: 0 additions & 136 deletions ci/Jenkinsfile.combined

This file was deleted.

5 changes: 3 additions & 2 deletions ci/Jenkinsfile.linux
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.8.3'
library 'status-jenkins-lib@linux-use-nix'

/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
Expand Down Expand Up @@ -117,6 +117,7 @@ pipeline {
} }
}
}

post {
success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } }
Expand All @@ -129,4 +130,4 @@ def getArch() {
for (def arch in ['x86_64', 'aarch64']) {
if (tokens.contains(arch)) { return arch }
}
}
}
8 changes: 4 additions & 4 deletions ci/Jenkinsfile.linux_nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ pipeline {

stages {
stage('Deps') {
steps {
steps { script {
nix.shell('make update --debug V=1', pure: true)
nix.shell('make deps --debug V=1', pure: true)
}
} }
}

stage('status-go') {
steps {
steps { script {
nix.shell('make status-go --debug V=1', pure: true)
}
} }
}

stage('Package') {
Expand Down
152 changes: 0 additions & 152 deletions ci/Jenkinsfile.macos

This file was deleted.

Loading

0 comments on commit b3e0f69

Please sign in to comment.