diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bddb9f3ee..ac35cb53e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,10 @@ jobs: arch: armhf - os: linux arch: aarch64 + - os: linux + arch: ppc64le + - os: linux + arch: s390x - os: darwin arch: x86_64 - os: darwin diff --git a/Jenkinsfile b/Jenkinsfile index 597bc0f462..b256b8a1b0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,7 +19,7 @@ def pkgs = [ ] def statics = [ - [os: "linux", arches: ["x86_64", "armel", "armhf", "aarch64"]], + [os: "linux", arches: ["x86_64", "armel", "armhf", "aarch64", "ppc64le", "s390x"]], [os: "darwin", arches: ["x86_64", "aarch64"]], [os: "windows", arches: ["x86_64"]], ] @@ -68,8 +68,8 @@ def genStaticStep(LinkedHashMap pkg, String arch) { aarch64: [label: "aarch64"], armel: [label: "aarch64"], armhf: [label: "aarch64"], - ppc64le: [label: "ppc64le"], - s390x : [label: "s390x"], + ppc64le: [label: "x86_64"], + s390x : [label: "x86_64"], ][arch] def nodeLabel = "linux&&${config.label}" if (config.label == 'x86_64') {