Skip to content

Merge pull request #16 from openecos-projects/integrate/liberty-export #25

Merge pull request #16 from openecos-projects/integrate/liberty-export

Merge pull request #16 from openecos-projects/integrate/liberty-export #25

Workflow file for this run

name: CI
on:
pull_request:
paths:
- 'src/**'
- 'cmake/**'
- 'CMakeLists.txt'
- 'pyproject.toml'
- 'build.sh'
- '.github/**'
push:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-wheel:
name: Build Wheel
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux_2_34_x86_64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build wheel
uses: ./.github/actions/build-wheel
- name: Upload repaired wheel
uses: actions/upload-artifact@v4
with:
name: ecc-tools-wheel
path: dist/wheel/repaired/ecc_tools-*.whl
retention-days: 7
if-no-files-found: error
- name: Upload checksums
uses: actions/upload-artifact@v4
with:
name: checksums
path: dist/wheel/SHA256SUMS
retention-days: 7