Skip to content

Commit c56ce2b

Browse files
committed
remove unused matrix variables
1 parent be4dec4 commit c56ce2b

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,13 @@ jobs:
2929
include:
3030
- os: windows-latest
3131
triplet: x64-windows
32-
openmp: ON
33-
builddir: dist/wheelhouse
34-
builddir1: dist
32+
builddir: dist
3533
- os: ubuntu-latest
3634
triplet: x64-linux
3735
builddir: wheelhouse
38-
builddir1: wheelhouse
3936
- os: macos-latest
4037
triplet: x64-osx
4138
builddir: wheelhouse
42-
builddir1: wheelhouse
4339
env:
4440
# Indicates the CMake build directory where project files and binaries are being produced.
4541
CMAKE_BUILD_DIR: ${{ github.workspace }}/builddir/
@@ -116,13 +112,13 @@ jobs:
116112
117113
- name: Run cibuildwheel
118114
run: |
119-
python3 -m cibuildwheel --output-dir ${{matrix.builddir1}}
115+
python3 -m cibuildwheel --output-dir ${{matrix.builddir}}
120116
121117
- name: Upload wheels as artifacts
122118
uses: actions/upload-artifact@v2
123119
with:
124120
name: ${{ matrix.os }}-wheels
125-
path: ${{matrix.builddir1}}/
121+
path: ${{matrix.builddir}}/
126122
retention-days: 5
127123

128124
windows-tests:
@@ -136,7 +132,6 @@ jobs:
136132
include:
137133
- os: windows-latest
138134
triplet: x64-windows
139-
openmp: ON
140135

141136
steps:
142137
- name: Checkout

0 commit comments

Comments
 (0)