Skip to content

Commit 84cb9ef

Browse files
committed
debug
1 parent e123ce1 commit 84cb9ef

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

.github/workflows/wheels.yml

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121

2222
jobs:
2323
sdist:
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-24.04
2525

2626
permissions:
2727
contents: write
@@ -53,11 +53,11 @@ jobs:
5353
- name: Run tests
5454
run: pytest -v --color=yes
5555

56-
# - name: Upload sdist
57-
# uses: actions/upload-artifact@v4.3.1
58-
# with:
59-
# name: sdist
60-
# path: dist/*.tar.gz
56+
- name: Upload sdist
57+
uses: actions/upload-artifact@v4.3.1
58+
with:
59+
name: sdist
60+
path: dist/*.tar.gz
6161

6262
generate-wheels-matrix:
6363
# Create a matrix of all architectures & versions to build.
@@ -77,18 +77,28 @@ jobs:
7777
# by updating the matrix to include windows builds as well.
7878
# See example here:
7979
# https://github.com/lxml/lxml/blob/3ccc7d583e325ceb0ebdf8fc295bbb7fc8cd404d/.github/workflows/wheels.yml#L95C1-L106C51
80+
# run: |
81+
# MATRIX=$(
82+
# {
83+
# cibuildwheel --print-build-identifiers --platform linux \
84+
# | grep -E 'manylinux_(x86_64|aarch64)' \
85+
# | grep -E 'cp3(12|13)-' \
86+
# | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \
87+
# && cibuildwheel --print-build-identifiers --platform macos \
88+
# | grep -E 'cp3(12|13)-' \
89+
# | grep -E 'arm64' \
90+
# | jq -nRc '{"only": inputs, "os": "macos-latest"}'
91+
# } | jq -sc
92+
# )
93+
# echo "include=$MATRIX"
94+
# echo "include=$MATRIX" >> $GITHUB_OUTPUT
8095
run: |
8196
MATRIX=$(
8297
{
8398
cibuildwheel --print-build-identifiers --platform linux \
84-
| grep -E 'manylinux_(x86_64|aarch64)' \
85-
| grep -E 'cp3(12|13)-' \
86-
| jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \
87-
&& cibuildwheel --print-build-identifiers --platform macos \
88-
| grep -E 'cp3(12|13)-' \
89-
| grep -E 'arm64' \
90-
| jq -nRc '{"only": inputs, "os": "macos-latest"}'
91-
} | jq -sc
99+
| grep -E 'manylinux_(x86_64)' \
100+
| grep -E 'cp3(12)-' \
101+
| jq -nRc '{"only": inputs, "os": "ubuntu-latest"}'
92102
)
93103
echo "include=$MATRIX"
94104
echo "include=$MATRIX" >> $GITHUB_OUTPUT
@@ -106,7 +116,7 @@ jobs:
106116
env:
107117
PYXMLSEC_LIBXML2_VERSION: 2.13.8
108118
PYXMLSEC_LIBXSLT_VERSION: 1.1.43
109-
PYXMLSEC_XMLSEC1_VERSION: 1.2.40
119+
PYXMLSEC_XMLSEC1_VERSION: 1.3.7
110120
PYXMLSEC_OPENSSL_VERSION: 3.5.0
111121

112122
steps:

0 commit comments

Comments
 (0)