Skip to content

Commit

Permalink
Update for 1.22rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Nov 14, 2023
1 parent e2a3f6f commit 1534caf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
abi: [cp38, cp39, cp310, cp311]
abi: [cp38, cp39, cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/manylinux2014_x86_64
docker run --rm -e MAKEFLAGS='-j2' -v `pwd`:/io openturns/manylinux2014_x86_64 /io/build-wheels-linux.sh v1.21 ${{ matrix.abi }}
docker run --rm -e MAKEFLAGS='-j2' -v `pwd`:/io openturns/manylinux2014_x86_64 /io/build-wheels-linux.sh v1.22rc1 ${{ matrix.abi }}
- uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
Expand All @@ -30,13 +30,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
abi: [cp38, cp39, cp310, cp311]
abi: [cp38, cp39, cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/archlinux-mingw
docker run --rm -e MAKEFLAGS='-j2' -v `pwd`:/io openturns/archlinux-mingw /io/build-wheels-mingw.sh v1.21 ${{ matrix.abi }}
docker run --rm -e MAKEFLAGS='-j2' -v `pwd`:/io openturns/archlinux-mingw /io/build-wheels-mingw.sh v1.22rc1 ${{ matrix.abi }}
- uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
Expand All @@ -55,13 +55,13 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
abi: [cp38, cp39, cp310, cp311]
abi: [cp38, cp39, cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- name: Build
env:
MAKEFLAGS: -j3
run: ./build-wheels-macos.sh v1.21 ${{ matrix.abi }}
run: ./build-wheels-macos.sh v1.22rc1 ${{ matrix.abi }}
- id: getfilename
run: echo "file=$(ls wheelhouse/*.whl)" >> $GITHUB_OUTPUT
- name: Archive wheel
Expand Down

0 comments on commit 1534caf

Please sign in to comment.