Skip to content

Commit

Permalink
static: build ppc64le and s390x packages
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Feb 4, 2023
1 parent 3e86f53 commit 35ee94c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Jenkinsfile
Expand Up @@ -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"]],
]
Expand Down Expand Up @@ -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') {
Expand Down

0 comments on commit 35ee94c

Please sign in to comment.