From 20aaaaf90c24ea5495cba3396d3977ab10923488 Mon Sep 17 00:00:00 2001 From: Justin Ma Date: Sun, 1 Oct 2023 09:32:34 +0800 Subject: [PATCH] Update build flags for riscv64gc and armv7 targets (#10564) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update build flags for riscv64gc and armv7 targets, as they are not required any more, let's give it a try in nightly release --- .github/workflows/nightly-build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 7a0c522611..51bd540a4e 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -117,10 +117,10 @@ jobs: target_rustflags: '' - target: armv7-unknown-linux-gnueabihf os: ubuntu-20.04 - target_rustflags: '--exclude=nu-cmd-dataframe' + target_rustflags: '' - target: riscv64gc-unknown-linux-gnu os: ubuntu-20.04 - target_rustflags: '--exclude=nu-cmd-dataframe' + target_rustflags: '' runs-on: ${{matrix.os}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee5ca5beb6..3037f713be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,10 +64,10 @@ jobs: target_rustflags: '' - target: armv7-unknown-linux-gnueabihf os: ubuntu-20.04 - target_rustflags: '--exclude=nu-cmd-dataframe' + target_rustflags: '' - target: riscv64gc-unknown-linux-gnu os: ubuntu-20.04 - target_rustflags: '--exclude=nu-cmd-dataframe' + target_rustflags: '' runs-on: ${{matrix.os}}