feat(ci)_: use s5cmd instead of s3cmd
It's actively maintained and has better concurrency support. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
769ea7799b
commit
6e52565356
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env groovy
|
#!/usr/bin/env groovy
|
||||||
library 'status-jenkins-lib@v1.8.18'
|
library 'status-jenkins-lib@v1.9.0'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux && x86_64 && nix-2.19' }
|
agent { label 'linux && x86_64 && nix-2.19' }
|
||||||
|
@ -64,7 +64,7 @@ pipeline {
|
||||||
|
|
||||||
stage('Upload') {
|
stage('Upload') {
|
||||||
steps { script {
|
steps { script {
|
||||||
env.PKG_URL = s3.uploadArtifact(ARTIFACT)
|
env.PKG_URL = s5cmd.upload(ARTIFACT)
|
||||||
} }
|
} }
|
||||||
}
|
}
|
||||||
} // stages
|
} // stages
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env groovy
|
#!/usr/bin/env groovy
|
||||||
library 'status-jenkins-lib@v1.8.18'
|
library 'status-jenkins-lib@v1.9.0'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'macos && aarch64 && xcode-15.1 && nix-2.19' }
|
agent { label 'macos && aarch64 && xcode-15.1 && nix-2.19' }
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env groovy
|
#!/usr/bin/env groovy
|
||||||
library 'status-jenkins-lib@v1.8.18'
|
library 'status-jenkins-lib@v1.9.0'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux && x86_64 && nix-2.19' }
|
agent { label 'linux && x86_64 && nix-2.19' }
|
||||||
|
@ -71,7 +71,7 @@ pipeline {
|
||||||
|
|
||||||
stage('Upload') {
|
stage('Upload') {
|
||||||
steps { script {
|
steps { script {
|
||||||
env.PKG_URL = s3.uploadArtifact(ARTIFACT)
|
env.PKG_URL = s5cmd.upload(ARTIFACT)
|
||||||
} }
|
} }
|
||||||
}
|
}
|
||||||
} // stages
|
} // stages
|
||||||
|
|
Loading…
Reference in New Issue