From a6e5ef9ef7c089c86f6559255245967384a680ef Mon Sep 17 00:00:00 2001 From: MichaIng Date: Sat, 4 Mar 2023 19:42:47 +0100 Subject: [PATCH] ci(push-build): add RISC-V builds Signed-off-by: MichaIng --- .github/workflows/push-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/push-build.yml b/.github/workflows/push-build.yml index 36dee7d7..0a15e078 100644 --- a/.github/workflows/push-build.yml +++ b/.github/workflows/push-build.yml @@ -34,10 +34,12 @@ jobs: - { target: arm-unknown-linux-musleabihf, pretty: armv6l, backend: false } - { target: armv7-unknown-linux-musleabihf, pretty: armv7l, backend: false } - { target: aarch64-unknown-linux-musl, pretty: aarch64, backend: false } + - { target: riscv64gc-unknown-linux-gnu, pretty: riscv64, backend: false } - { target: x86_64-unknown-linux-musl, pretty: x86_64-backend, backend: true } - { target: arm-unknown-linux-musleabihf, pretty: armv6l-backend, backend: true } - { target: armv7-unknown-linux-musleabihf, pretty: armv7l-backend, backend: true } - { target: aarch64-unknown-linux-musl, pretty: aarch64-backend, backend: true } + - { target: riscv64gc-unknown-linux-gnu, pretty: riscv64-backend, backend: true } steps: - uses: actions/checkout@v4 with: