Skip to content

Commit

Permalink
Merge branch 'update_CI_2025' into 'develop'
Browse files Browse the repository at this point in the history
2025-01 CI update

See merge request mhm/mhm!179
  • Loading branch information
MuellerSeb committed Jan 23, 2025
2 parents d778c13 + 8cae3bb commit afa78a8
Show file tree
Hide file tree
Showing 28 changed files with 1,300 additions and 541 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ jobs:
name: sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11

- name: Build sdist
run: |
python -m pip install --upgrade pip
pip install build
python -m build --sdist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -44,21 +44,21 @@ jobs:
matrix:
cfg:
- { os: ubuntu-latest, arch: x86_64 }
- { os: macos-latest, arch: x86_64 }
- { os: macos-13, arch: x86_64 }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Build wheels
uses: pypa/cibuildwheel@v2.11.2
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS: ${{ matrix.cfg.arch }}
with:
output-dir: dist

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ./dist/*.whl

Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down
Loading

0 comments on commit afa78a8

Please sign in to comment.