Skip to content

Commit

Permalink
env variable test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peguen committed Sep 20, 2024
1 parent e7a7636 commit e3b04e7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ jobs:
env:
CIBW_ARCHS: auto64
CIBW_BEFORE_ALL: >
mkdir $PYTHON_PACKAGE_PATH &
cp -r $PYTHON_CORE_PATH $PYTHON_PACKAGE_PATH &
cp -r $PYTHON_HDF5_PATH $PYTHON_PACKAGE_PATH
mkdir "$PYTHON_PACKAGE_PATH" &
cp -r "$PYTHON_CORE_PATH $PYTHON_PACKAGE_PATH" &
cp -r "$PYTHON_HDF5_PATH $PYTHON_PACKAGE_PATH"
- name: Build wheels
if: runner.os == 'Linux'
uses: pypa/cibuildwheel@v2.17
env:
CIBW_ARCHS: auto64
CIBW_BEFORE_ALL: >
mkdir -p $PYTHON_PACKAGE_PATH &&
cp -r $PYTHON_CORE_PATH $PYTHON_PACKAGE_PATH &&
cp -r $PYTHON_HDF5_PATH $PYTHON_PACKAGE_PATH
mkdir -p "$PYTHON_PACKAGE_PATH" &&
cp -r "$PYTHON_CORE_PATH $PYTHON_PACKAGE_PATH" &&
cp -r "$PYTHON_HDF5_PATH $PYTHON_PACKAGE_PATH"
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e3b04e7

Please sign in to comment.