Skip to content

Commit a45533a

Browse files
committed
static: build ppc64le and s390x packages
Signed-off-by: CrazyMax <[email protected]>
1 parent c3680fe commit a45533a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ jobs:
4444
arch: armhf
4545
- os: linux
4646
arch: aarch64
47+
- os: linux
48+
arch: ppc64le
49+
- os: linux
50+
arch: s390x
4751
- os: darwin
4852
arch: x86_64
4953
- os: darwin

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def pkgs = [
1919
]
2020

2121
def statics = [
22-
[os: "linux", arches: ["x86_64", "armel", "armhf", "aarch64"]],
22+
[os: "linux", arches: ["x86_64", "armel", "armhf", "aarch64", "ppc64le", "s390x"]],
2323
[os: "darwin", arches: ["x86_64", "aarch64"]],
2424
[os: "windows", arches: ["x86_64"]],
2525
]
@@ -68,8 +68,8 @@ def genStaticStep(LinkedHashMap pkg, String arch) {
6868
aarch64: [label: "aarch64"],
6969
armel: [label: "aarch64"],
7070
armhf: [label: "aarch64"],
71-
ppc64le: [label: "ppc64le"],
72-
s390x : [label: "s390x"],
71+
ppc64le: [label: "x86_64"],
72+
s390x : [label: "x86_64"],
7373
][arch]
7474
def nodeLabel = "linux&&${config.label}"
7575
if (config.label == 'x86_64') {

0 commit comments

Comments
 (0)