Add mipsle target
Cadoles/go-http-peering/pipeline/head This commit is unstable Details

This commit is contained in:
wpetit 2022-09-12 17:47:09 +02:00
parent f872a68906
commit 7cff0e3f91
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
steps {
script {
sh 'make tidy'
sh 'ARCH_TARGETS="amd64 arm arm64" make release'
sh 'ARCH_TARGETS="amd64 arm arm64 mipsle" make release'
def attachments = sh(returnStdout: true, script: 'find release -maxdepth 1 -type f').split(' ')
gitea.release('forge-jenkins', 'Cadoles', 'go-http-peering', [

View File

@ -3,7 +3,7 @@
set -eo pipefail
OS_TARGETS=(linux)
ARCH_TARGETS=${ARCH_TARGETS:-amd64}
ARCH_TARGETS=${ARCH_TARGETS:-amd64 mipsle}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"