From b8f680a3b45325592c5c1270056ad6f0fb1f7e29 Mon Sep 17 00:00:00 2001 From: Meng Zhuo Date: Tue, 2 Jun 2026 16:18:59 +0800 Subject: [PATCH] CI: use RISE runner to test riscv64 --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ffa502f..511438cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,3 +133,13 @@ jobs: run: | echo "::endgroup::" # flatten 'run container' ./configure && make && make test -k + + test-riscv64-linux-native: + runs-on: ubuntu-24.04-riscv + timeout-minutes: 8 + steps: + - uses: actions/checkout@v4 + - name: make & test tcc (riscv64-linux native) + run: | + uname -m # riscv64 + ./configure && make && make test -k