Skip to content

Commit

Permalink
ci: fix file path
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Oct 28, 2023
1 parent 506867a commit d370d2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,12 @@ jobs:
- name: cross compile rust object files for another target arch
if: matrix.config.target != ''
run: |
LIB_PATH="$(pwd)/src/rust/target/${{ env.RUNNER_TARGET }}/${{ env.RPOLARS_PROFILE }}/libr_polars.a"
pushd src
make -f Makevars.in "$(pwd)/rust/target/${{ env.RPOLARS_PROFILE }}/libr_polars.a"
make -f Makevars.in "${LIB_PATH}"
popd
mkdir -p ./tools
mv "./src/rust/target/${{ env.RUNNER_TARGET }}/${{ env.RPOLARS_PROFILE }}/libr_polars.a" ./tools/
mv "${LIB_PATH}" ./tools/
ls -l
ls -l ./tools/
shell: bash
Expand Down

0 comments on commit d370d2c

Please sign in to comment.