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:
Jakub Sokołowski 2024-06-20 21:40:04 +02:00
parent 769ea7799b
commit 6e52565356
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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' }

View File

@ -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