From 01cfc35f5ae813f1ade0f6ed0fc028057635f625 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Sat, 28 Oct 2023 17:01:58 +0000 Subject: [PATCH] Revert "ci: try to prevent build lib twice" This reverts commit 85706cc25613bce1bdd3b2ce0f1278d817918adc. --- .github/workflows/release.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a725c5568..a4e922bc2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -95,14 +95,10 @@ jobs: TARGET="$(rustc -vV | grep host | cut -d' ' -f2)" fi Rscript -e 'pkgbuild::compile_dll()' - mkdir -p tools - mv "$(pwd)/src/rust/target/${TARGET}/release/libr_polars.a" tools - echo "LIBR_POLARS_PATH=$(pwd)tools/libr_polars.a" >>$GITHUB_ENV + echo "LIBR_POLARS_PATH=$(pwd)/src/rust/target/${TARGET}/release/libr_polars.a" >>$GITHUB_ENV - name: make binary R package + test on host arch if: matrix.config.target == '' - env: - NOT_CRAN: "true" run: | devtools::install(quick = TRUE) devtools::test(stop_on_failure = TRUE)