From a018637a90d5684da71c9b8227b623beb754dea0 Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Mon, 11 Oct 2021 22:12:32 -0700 Subject: [PATCH] fix windows release build --- .github/workflows/columnq_cli_release.yml | 2 -- .github/workflows/roapi_http_release.yml | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/columnq_cli_release.yml b/.github/workflows/columnq_cli_release.yml index 8fa8d97..04f9c43 100644 --- a/.github/workflows/columnq_cli_release.yml +++ b/.github/workflows/columnq_cli_release.yml @@ -13,7 +13,6 @@ on: env: # NOTE: this env is also defined in build.yml RUST_TC_NIGHTLY_VER: "2021-09-25" - RUSTFLAGS: "-C target-cpu=skylake" jobs: # skip tag version validation on non-release branch run @@ -107,7 +106,6 @@ jobs: run: pip3 install 'maturin<0.12' - name: Build wheels run: | - export RUSTFLAGS='-C target-cpu=skylake' maturin build -m columnq-cli/Cargo.toml -b bin --release --out dist --no-sdist --target ${{ matrix.platform.target }} --cargo-extra-args="--features=${{ matrix.platform.features }}" pip install columnq-cli --no-index --find-links dist --force-reinstall columnq --help diff --git a/.github/workflows/roapi_http_release.yml b/.github/workflows/roapi_http_release.yml index c576b6c..ab94c0d 100644 --- a/.github/workflows/roapi_http_release.yml +++ b/.github/workflows/roapi_http_release.yml @@ -107,7 +107,6 @@ jobs: run: pip3 install 'maturin<0.12' - name: Build wheels run: | - export RUSTFLAGS='-C target-cpu=skylake' maturin build -m roapi-http/Cargo.toml -b bin --release --out dist --no-sdist --target ${{ matrix.platform.target }} --cargo-extra-args="--features=${{ matrix.platform.features }}" pip install roapi-http --no-index --find-links dist --force-reinstall roapi-http --help