Skip to content

Commit c06fcfd

Browse files
committed
let cibuildwheel do all building for its job
1 parent bf98ba6 commit c06fcfd

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/on-release-main.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,6 @@ jobs:
2929
with:
3030
python-version: "3.11"
3131

32-
- uses: abatilo/actions-poetry@v3
33-
34-
- name: setup graalvm for static native build
35-
uses: graalvm/setup-graalvm@v1
36-
with:
37-
java-version: "23"
38-
distribution: "graalvm-community"
39-
github-token: ${{ secrets.GITHUB_TOKEN }}
40-
components: "native-image"
41-
native-image-job-reports: "true"
42-
cache: "maven"
43-
44-
- name: Install python dependencies
45-
run: poetry install --no-interaction
46-
4732
- name: Set MACOSX_DEPLOYMENT_TARGET used by cibuildwheel
4833
if: ${{ startsWith(matrix.os, 'macos') }}
4934
run: echo "MACOSX_DEPLOYMENT_TARGET=${{ matrix.os == 'macos-14' && '14.0' || '13.0' }}" >> $GITHUB_ENV
@@ -94,6 +79,21 @@ jobs:
9479
mkdir -p dist
9580
cp wheelhouse/*.whl dist/
9681
82+
# - uses: abatilo/actions-poetry@v3
83+
#
84+
# - name: setup graalvm for static native build
85+
# uses: graalvm/setup-graalvm@v1
86+
# with:
87+
# java-version: "23"
88+
# distribution: "graalvm-community"
89+
# github-token: ${{ secrets.GITHUB_TOKEN }}
90+
# components: "native-image"
91+
# native-image-job-reports: "true"
92+
# cache: "maven"
93+
#
94+
# - name: Install python dependencies
95+
# run: poetry install --no-interaction
96+
9797
- name: Publish to PyPI
9898
run: |
9999
poetry config pypi-token.pypi "${{ secrets.PYPI_TOKEN }}"

0 commit comments

Comments
 (0)