From 0b6f15b69e44aec839bedc5e0d3f49eb31ee64ff Mon Sep 17 00:00:00 2001 From: Justin Ma Date: Thu, 1 Feb 2024 20:44:07 +0800 Subject: [PATCH] Disable riscv64 build target temporarily to make release and nightly-build work (#11700) Let's disable riscv64 build target temporarily to make release and nightly-build workflow work, close #11604 We will add this target later if the related issue got fixed --- .github/workflows/nightly-build.yml | 8 ++++---- .github/workflows/release.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 7c1f3ffdd3..bc396b9a02 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -81,7 +81,7 @@ jobs: - x86_64-unknown-linux-musl - aarch64-unknown-linux-gnu - armv7-unknown-linux-gnueabihf - - riscv64gc-unknown-linux-gnu + # - riscv64gc-unknown-linux-gnu extra: ['bin'] include: - target: aarch64-apple-darwin @@ -118,9 +118,9 @@ jobs: - target: armv7-unknown-linux-gnueabihf os: ubuntu-20.04 target_rustflags: '' - - target: riscv64gc-unknown-linux-gnu - os: ubuntu-latest - target_rustflags: '' + # - target: riscv64gc-unknown-linux-gnu + # os: ubuntu-latest + # target_rustflags: '' runs-on: ${{matrix.os}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d2c1e0af66..8f7bb5944d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - x86_64-unknown-linux-musl - aarch64-unknown-linux-gnu - armv7-unknown-linux-gnueabihf - - riscv64gc-unknown-linux-gnu + # - riscv64gc-unknown-linux-gnu extra: ['bin'] include: - target: aarch64-apple-darwin @@ -65,9 +65,9 @@ jobs: - target: armv7-unknown-linux-gnueabihf os: ubuntu-20.04 target_rustflags: '' - - target: riscv64gc-unknown-linux-gnu - os: ubuntu-latest - target_rustflags: '' + # - target: riscv64gc-unknown-linux-gnu + # os: ubuntu-latest + # target_rustflags: '' runs-on: ${{matrix.os}}