ssssam commented on code in PR #1714:
URL: https://github.com/apache/buildstream/pull/1714#discussion_r946909679
##########
.github/workflows/ci.yml:
##########
@@ -108,3 +108,55 @@ jobs:
with:
name: docs
path: doc/build/html
+
+ build_wheels:
+ name: Build Python wheel packages on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
+ strategy:
+ matrix:
+ os: [ubuntu-20.04]
+
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+
+ - name: Fetch latest BuildBox release
+ run:
${GITHUB_WORKSPACE}/.github/wheel-helpers/fetch-latest-buildbox-release.sh
+
+ - name: Build wheels
+ run: pipx run cibuildwheel==2.8.1
+
+ - uses: actions/upload-artifact@v3
+ with:
+ name: wheels
+ path: ./wheelhouse/*.whl
+
+ test_wheels:
+ name: Test Python wheel packages on ${{ matrix.os }}
Review Comment:
The issue that the `os` variable is not used at all, but a different
variable named `test-name` :) fixed now
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]