@@ -36,15 +36,15 @@ jobs:
3636 target : ${{ matrix.platform.target }}
3737 args : --release --out dist --find-interpreter
3838 # sccache: 'true'
39- manylinux : 2_28
39+ manylinux : auto
4040 before-script-linux : |
4141 # Source = https://github.com/Intreecom/scyllapy/blob/develop/.github/workflows/release.yaml
4242 # If we're running on rhel centos, install needed packages.
4343 if command -v yum &> /dev/null; then
4444 yum install -y perl-core openssl openssl-devel pkgconfig clang llvm-devel
4545 else
4646 # If we're running on debian-based system.
47- apt update -y && apt-get install -y libssl-dev openssl pkg-config clang libclang-dev
47+ apt update -y && apt-get install -y libssl-dev openssl pkg-config clang libclang-dev gcc-multilib g++-multilib
4848 fi
4949 - name : Upload wheels
5050 uses : actions/upload-artifact@v4
@@ -110,46 +110,46 @@ jobs:
110110 # name: wheels-windows-${{ matrix.platform.target }}
111111 # path: dist
112112
113- macos :
114- runs-on : ${{ matrix.platform.runner }}
115- strategy :
116- matrix :
117- platform :
118- - runner : macos-latest
119- target : x86_64
120- - runner : macos-latest
121- target : aarch64
122- steps :
123- - uses : actions/checkout@v4
124- - uses : actions/setup-python@v5
125- with :
126- python-version : 3.x
127- - name : Build wheels
128- uses : PyO3/maturin-action@v1
129- with :
130- target : ${{ matrix.platform.target }}
131- args : --release --out dist --find-interpreter
132- sccache : ' true'
133- - name : Upload wheels
134- uses : actions/upload-artifact@v4
135- with :
136- name : wheels-macos-${{ matrix.platform.target }}
137- path : dist
113+ # macos:
114+ # runs-on: ${{ matrix.platform.runner }}
115+ # strategy:
116+ # matrix:
117+ # platform:
118+ # - runner: macos-latest
119+ # target: x86_64
120+ # - runner: macos-latest
121+ # target: aarch64
122+ # steps:
123+ # - uses: actions/checkout@v4
124+ # - uses: actions/setup-python@v5
125+ # with:
126+ # python-version: 3.x
127+ # - name: Build wheels
128+ # uses: PyO3/maturin-action@v1
129+ # with:
130+ # target: ${{ matrix.platform.target }}
131+ # args: --release --out dist --find-interpreter
132+ # sccache: 'true'
133+ # - name: Upload wheels
134+ # uses: actions/upload-artifact@v4
135+ # with:
136+ # name: wheels-macos-${{ matrix.platform.target }}
137+ # path: dist
138138
139- sdist :
140- runs-on : ubuntu-latest
141- steps :
142- - uses : actions/checkout@v4
143- - name : Build sdist
144- uses : PyO3/maturin-action@v1
145- with :
146- command : sdist
147- args : --out dist
148- - name : Upload sdist
149- uses : actions/upload-artifact@v4
150- with :
151- name : wheels-sdist
152- path : dist
139+ # sdist:
140+ # runs-on: ubuntu-latest
141+ # steps:
142+ # - uses: actions/checkout@v4
143+ # - name: Build sdist
144+ # uses: PyO3/maturin-action@v1
145+ # with:
146+ # command: sdist
147+ # args: --out dist
148+ # - name: Upload sdist
149+ # uses: actions/upload-artifact@v4
150+ # with:
151+ # name: wheels-sdist
152+ # path: dist
153153
154154 # release:
155155 # name: Release
0 commit comments