Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI (alpine): Add an emulated RISC-V 64-bit runner #810

Merged
merged 3 commits into from
May 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/build-arch-emu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,22 @@ jobs:
matrix:
# For available CPU architectures, see:
# https://github.com/marketplace/actions/setup-alpine-linux-environment
arch: [x86, aarch64, armv7, ppc64le, s390x]
arch: [x86, aarch64, armv7, ppc64le, s390x, riscv64]
include:
- arch: x86
ccache-max: 80M
ccache-max: 64M
extra-build-libs: ":GraphBLAS:LAGraph"
extra-check-libs: ":GraphBLAS:LAGraph"
- arch: aarch64
ccache-max: 42M
ccache-max: 28M
- arch: armv7
ccache-max: 42M
ccache-max: 25M
- arch: ppc64le
ccache-max: 45M
ccache-max: 28M
- arch: s390x
ccache-max: 42M
ccache-max: 28M
- arch: riscv64
ccache-max: 28M

name: alpine (${{ matrix.arch }})

Expand Down Expand Up @@ -76,11 +78,11 @@ jobs:
mpfr-dev
lapack-dev
python3
valgrind
util-linux-misc
autoconf
automake
libtool
# ${{ matrix.arch != 'riscv64' && 'valgrind' || '' }}

- name: get CPU information (emulated)
run: lscpu
Expand Down