Skip to content

Commit

Permalink
update github actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tjol committed Oct 12, 2024
1 parent 0a0b441 commit 7849e43
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
matrix:
build_type: [ Release, Debug ]
os: [ ubuntu-22.04, windows-2022, macos-12 ]
os: [ ubuntu-24.04, windows-2022, macos-14 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
Expand All @@ -31,10 +31,10 @@ jobs:
name: C, C++ Shared Library
strategy:
matrix:
os: [ ubuntu-22.04, windows-2022, macos-12 ]
os: [ ubuntu-24.04, windows-2022, macos-14 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON
Expand All @@ -48,7 +48,7 @@ jobs:

build_32bit:
name: Linux 32-bit
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
BUILD_TYPE: Release
CFLAGS: "-m32"
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Install Multilib support
run: sudo apt-get install -y gcc-multilib g++-multilib

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=$BUILD_TYPE
Expand All @@ -75,10 +75,10 @@ jobs:
name: Python
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
runs-on: ubuntu-22.04
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
os: [ubuntu-24.04, windows-2022, macos-13, macos-14]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.10.1
uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_SKIP: pp*
# env:
Expand Down

0 comments on commit 7849e43

Please sign in to comment.