-
Notifications
You must be signed in to change notification settings - Fork 89
88 lines (69 loc) · 1.92 KB
/
packaging-test.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Packaging Tests
on:
pull_request:
workflow_dispatch:
concurrency:
group: packaging-test-${{ github.head_ref }}
cancel-in-progress: true
env:
SOURCE_DATE_EPOCH: "1668811211"
jobs:
build_awkward_sdist_wheel:
name: "Build awkward"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Prepare build files
run: pipx run nox -s prepare
- name: Build awkward SDist & wheel
run: pipx run build
- name: Check metadata
run: pipx run twine check dist/*
- name: Build awkward-cpp SDist
run: pipx run build --sdist awkward-cpp
- uses: actions/upload-artifact@v4
with:
name: awkward-sdist
path: dist/*.tar.gz
- uses: actions/upload-artifact@v4
with:
name: awkward-wheel
path: dist/*.whl
- uses: actions/upload-artifact@v4
with:
name: awkward-cpp-sdist
path: awkward-cpp/dist/*.tar.gz
build_cpp_wheels:
name: "Build awkward-cpp: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-12, ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Prepare build files
run: pipx run nox -s prepare
- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: universal2
CIBW_BUILD: cp39-win_amd64 cp310-manylinux_x86_64 cp38-macosx_universal2
with:
config-file: cibuildwheel.toml
package-dir: awkward-cpp
- uses: pypa/[email protected]
if: matrix.os == 'ubuntu-latest'
env:
CIBW_BUILD: cp312-manylinux_x86_64
with:
config-file: cibuildwheel.toml
package-dir: awkward-cpp
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: awkward-cpp-wheels-${{ matrix.os }}
path: wheelhouse/*.whl