From 964106b3f58970a234117ccb79d3b3d9a180da89 Mon Sep 17 00:00:00 2001 From: Earle Lowe <30607889+emlowe@users.noreply.github.com> Date: Fri, 20 Oct 2023 09:18:30 -0700 Subject: [PATCH] Use CNI ubuntu riscv docker image --- .github/workflows/build-test-riscv64.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test-riscv64.yml b/.github/workflows/build-test-riscv64.yml index 378896585..552308f32 100644 --- a/.github/workflows/build-test-riscv64.yml +++ b/.github/workflows/build-test-riscv64.yml @@ -33,13 +33,11 @@ jobs: platforms: riscv64 - name: Build and Test - run: | + run: | docker run --rm --platform linux/riscv64 \ -v ${{ github.workspace }}:/ws --workdir=/ws \ - riscv64/debian:rc-buggy \ + chianetwork/ubuntu-22.04-risc-builder:latest \ bash -exc '\ - apt-get update && \ - apt-get install -y cmake build-essential git python3-full python3-dev python3-pip && \ cmake --version && \ uname -a && \ pip wheel -w dist . && \