From 3ac7c0c243c3fb8d9f49e9b72c0484cf352c8e1e Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Mon, 9 Jun 2025 15:38:37 +0200 Subject: [PATCH] CI: use latest-stable Alpine branch for the RISC-V build --- .github/workflows/c-cpp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index e84a3a9..3c7907b 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -14,14 +14,14 @@ jobs: build-alpine-static: timeout-minutes: 240 - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: matrix: config: - {arch: x86_64, branch: latest-stable, flags: "-ffunction-sections"} - {arch: aarch64, branch: latest-stable, flags: "-ffunction-sections -mfix-cortex-a53-835769 -mfix-cortex-a53-843419"} - - {arch: riscv64, branch: edge, flags: "-ffunction-sections -ffat-lto-objects"} + - {arch: riscv64, branch: latest-stable, flags: "-ffunction-sections"} steps: - name: Setup Alpine Linux