-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 825 Bytes
/
ci.yml
File metadata and controls
37 lines (32 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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