Skip to content

Commit

Permalink
BUG: malformed conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
aylward committed Aug 27, 2023
1 parent 539476b commit 028866a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ jobs:
- name: 'Setup Build Env x64'
shell: bash
if: ${{ matrix.target-arch }} == 'x64'
if: matrix.target-arch == 'x64'
run: |
MANYLINUX_PLATFORM=${{ matrix.manylinux-platform }}
echo "Manylinux platform ${MANYLINUX_PLATFORM}"
Expand All @@ -290,7 +290,7 @@ jobs:
- name: 'Setup Build Env aarch'
shell: bash
if: ${{ matrix.target-arch }} == 'aarch64'
if: matrix.target-arch == 'aarch64'
run: |
MANYLINUX_PLATFORM=${{ matrix.manylinux-platform }}
echo "Manylinux platform ${MANYLINUX_PLATFORM}"
Expand All @@ -317,7 +317,7 @@ jobs:
key: linux-${{ env.vtk-git-tag }}-${{ matrix.manylinux-platform }}-${{ matrix.python-version }}

- name: 'Git-Configure-Build VTK x64'
if: target-arch == 'x64' && steps.cache-vtk-python-linux.outputs.cache-hit != 'true'
if: matrix.target-arch == 'x64' && steps.cache-vtk-python-linux.outputs.cache-hit != 'true'
shell: bash
run: |
cat > git-configure-build-vtk.sh << EOF
Expand All @@ -341,7 +341,7 @@ jobs:
/tmp/dockcross-manylinux-x64 ./git-configure-build-vtk.sh
- name: 'Git-Configure-Build VTK aarch64'
if: target-arch == 'aarch64' && steps.cache-vtk-python-linux.outputs.cache-hit != 'true'
if: matrix.target-arch == 'aarch64' && steps.cache-vtk-python-linux.outputs.cache-hit != 'true'
shell: bash
run: |
cat > git-configure-build-vtk.sh << EOF
Expand Down

0 comments on commit 028866a

Please sign in to comment.