Skip to content

CI

CI #4

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
tags:
- "*.*.*"
concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build_wheels:
name: Build ${{ matrix.build }}${{ matrix.arch }} wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
arch: "x86_64"
artifact_suffix: "linux_x86_64"
- os: ubuntu-latest
arch: "i686"
artifact_suffix: "linux_i686"
- os: ubuntu-24.04-arm
arch: "aarch64"
build: "manylinux_"
artifact_suffix: "manylinux_aarch64"
- os: ubuntu-24.04-arm
arch: "aarch64"
build: "musllinux_"
artifact_suffix: "musllinux_aarch64"
- os: ubuntu-24.04-arm
arch: "armv7l"
build: "manylinux_"
artifact_suffix: "manylinux_armv7l"
- os: ubuntu-24.04-arm
arch: "armv7l"
build: "musllinux_"
artifact_suffix: "musllinux_armv7l"
# - os: ubuntu-latest
# arch: "ppc64le"
# build: "manylinux_"
# artifact_suffix: "manylinux_ppc64le"
# use_qemu: true
# - os: ubuntu-latest
# arch: "ppc64le"
# build: "musllinux_"
# artifact_suffix: "musllinux_ppc64le"
# use_qemu: true
# - os: ubuntu-latest
# arch: "s390x"
# build: "manylinux_"
# artifact_suffix: "manylinux_s390x"
# use_qemu: true
# - os: ubuntu-latest
# arch: "s390x"
# build: "musllinux_"
# artifact_suffix: "musllinux_s390x"
# use_qemu: true
# - os: windows-2019
# arch: "AMD64"
# # msystem: "mingw64"
# # mingw_env: "x86_64"
# artifact_suffix: "windows_x86_64"
- os: macos-14
arch: "arm64"
artifact_suffix: "macos"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # ensure history is present for automatic versioning
- name: Set up QEMU
uses: docker/[email protected]
if: runner.os == 'Linux' && matrix.use_qemu
# - name: Set up MSYS
# uses: msys2/setup-msys2@v2
# with:
# msystem: ${{ matrix.msystem }}
# install: >-
# mingw-w64-${{matrix.mingw_env}}-toolchain
# if: runner.os == 'Windows'
- name: Install ninja (macOS)
run: which ninja || brew install ninja
if: runner.os == 'macOS'
- name: Install pipx (macOS)
run: which pipx || brew install pipx
if: runner.os == 'macOS'
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_BUILD: "cp39-${{ matrix.build || '' }}*"
- uses: actions/upload-artifact@v4
with:
name: artifact-${{matrix.artifact_suffix}}
path: ./wheelhouse/*.whl
# - name: print dependencies (Linux)
# run: |
# du -csh $(realpath llvm-project-$LLVM_VER/build/lib/libclang.so)
# file $(realpath llvm-project-$LLVM_VER/build/lib/libclang.so)
# strings llvm-project-$LLVM_VER/build/lib/libclang.so | grep GLIBC
# nm --dynamic --undefined-only --with-symbol-versions llvm-project-$LLVM_VER/build/lib/libclang.so
# - name: print dependencies (macOS)
# run: |
# du -csh llvm-project-$LLVM_VER/build/lib/libclang.dylib
# file llvm-project-$LLVM_VER/build/lib/libclang.dylib
# otool -L llvm-project-$LLVM_VER/build/lib/libclang.dylib
# dyldinfo -platform -dependents libclang.dylib || true
# - name: create and print sha512sum
# run: |
# cd llvm-project-$LLVM_VER/build/lib
# sha512sum libclang.so > libclang.so.$LLVM_VER.alpine-amd64.sha512sum
# echo "Checksum is: "
# cat libclang.so.$LLVM_VER.alpine-amd64.sha512sum
# tar zcvfh libclang.so.$LLVM_VER.alpine-amd64.tar.gz libclang.so libclang.so.$LLVM_VER.alpine-amd64.sha512sum
# shasum -a512 libclang.so.$LLVM_VER.alpine-amd64.tar.gz
# - name: create and print sha512sum (Windows)
# run: |
# $env:Path = "C:\Program Files\Git\usr\bin;$env:Path"
# cd llvm-project-$env:LLVM_VER\build\RelWithDebInfo\bin
# sha512sum.exe libclang.dll > libclang.dll.$env:LLVM_VER.windows-amd64.sha512sum
# echo "Checksum is: "
# Get-Content -Path libclang.dll.$env:LLVM_VER.windows-amd64.sha512sum
# tar zcvf libclang.dll.$env:LLVM_VER.windows-amd64.tar.gz libclang.dll libclang.dll.$env:LLVM_VER.windows-amd64.sha512sum
# sha512sum.exe libclang.dll.$env:LLVM_VER.windows-amd64.tar.gz
# - uses: actions/upload-artifact@v4
# with:
# name: libclang.so.${{env.LLVM_VER}}.alpine-amd64.tar.gz
# path: llvm-project-${{env.LLVM_VER}}/build/lib/libclang.so.${{env.LLVM_VER}}.alpine-amd64.tar.gz
build_sdist:
name: Build source distributions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # ensure history is present for automatic versioning
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: artifact-sdist
path: dist/*.tar.gz
check_dist:
name: Check dist
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- run: pipx run twine check --strict dist/*
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
needs: [build_wheels, build_sdist, check_dist]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/libclang
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Download Python package dist artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1