ref: a3165669ca41add503abfa132f7929407ede101a
parent: 5a02e9e0b5a50c2b9086bea43cbb074dfcdc2663
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Sun Dec 17 14:21:54 EST 2023
Remove riscv64, add s390x. S390 is big endian, so that's a good test.
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -63,12 +63,12 @@
# - name: cabal build
# run: cabal build
- build-linux-riscv64:
+ build-linux-s390x:
runs-on: ubuntu-latest
steps:
- uses: jirutka/setup-alpine@v1
with:
- arch: riscv64
+ arch: s390x
branch: v3.15
packages: >
build-base
@@ -80,6 +80,27 @@
run: make
- name: make everytestmhs
run: make everytestmhs
+# - name: cabal build
+# run: cabal build
+
+# Not supported by alpine
+# build-linux-riscv64:
+# runs-on: ubuntu-latest
+# steps:
+# - uses: jirutka/setup-alpine@v1
+# with:
+# arch: riscv64
+# branch: v3.15
+# packages: >
+# build-base
+# gcc
+# make
+# - name: checkout repo
+# uses: actions/checkout@v3
+# - name: make
+# run: make
+# - name: make everytestmhs
+# run: make everytestmhs
# - name: cabal build
# run: cabal build
--
⑨