Skip to content

feat: named axis for ak.Array #3052

feat: named axis for ak.Array

feat: named axis for ak.Array #3052

Workflow file for this run

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: Setup uv
uses: yezz123/setup-uv@v4
- 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