Skip to content

Commit 25ddd55

Browse files
authored
Update make_wheel.yml
1 parent e96b7b3 commit 25ddd55

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/make_wheel.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,12 @@ jobs:
7373
python-version: ${{ matrix.python-version }}
7474

7575
- name: Install Python Dependencies
76-
run: pip3 install --upgrade pip packaging check-wheel-contents
76+
run: |
77+
pip3 install packaging
78+
which python3
79+
python3 --version
80+
pip3 list
81+
bazel --version
7782
7883
- name: Build for Python ${{ matrix.python-version }}
7984
run: bazel --bazelrc=.bazelrc build --compilation_mode=opt --dynamic_mode=off --config=luajit ${{ matrix.cfg.config }} //dmlab2d:dmlab2d_wheel
@@ -85,7 +90,9 @@ jobs:
8590
echo WHEEL_NAME="${WHEEL_NAME}" >> "${GITHUB_ENV}"
8691
8792
- name: Check wheel contents
88-
run: check-wheel-contents bazel-bin/dmlab2d/${{ env.WHEEL_NAME }}
93+
run: |
94+
pip3 install check-wheel-contents
95+
check-wheel-contents bazel-bin/dmlab2d/${{ env.WHEEL_NAME }}
8996
9097
- name: Test wheel
9198
if: (!contains(env.WHEEL_NAME, 'arm64'))

0 commit comments

Comments
 (0)