Skip to content

Force custom dist build for now #1

Force custom dist build for now

Force custom dist build for now #1

Workflow file for this run

name: Build wheels
on:
pull_request:
push:
branches:
- 'build-support-struct'
tags:
- "v*"
jobs:
# Build the source distribution for PyPI
build_sdist:
name: Build sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build sdist
run: |
python3.10 -m pip install --upgrade wheel
python3.10 setup.py sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
# Build binary distributions for PyPI
build_wheels:
name: Build on ${{ matrix.os }} for ${{matrix.cibw_python}} ${{matrix.cibw_arch}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Windows isn't working right now: https://github.com/caketop/python-starlark-go/issues/4
os: [ubuntu-latest, macos-latest]
cibw_python: ["cp38-*"]
cibw_arch: ["i686", "x86_64", "aarch64", "arm64"]
include:
- cibw_arch: arm64
goarch: arm64
- cibw_arch: aarch64
goarch: arm64
- cibw_arch: x86_64
goarch: amd64
exclude:
- os: ubuntu-latest
cibw_arch: arm64
- os: macos-latest
cibw_arch: i686
- os: macos-latest
cibw_arch: aarch64
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
if: runner.os != 'Linux'
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_BUILD: ${{ matrix.cibw_python }}
CIBW_ARCHS: ${{ matrix.cibw_arch }}
GOARCH: ${{ matrix.goarch }}
CGO_ENABLED: 1
- uses: actions/upload-artifact@v3
with:
path: wheelhouse/starlark_go-*.whl
# Create a GitHub release
# github_release:
# name: Create GitHub release
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
# needs: [build_wheels, build_sdist]
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: actions/download-artifact@v3
# with:
# name: artifact
# path: dist
# - name: "✏️ Generate release changelog"
# id: changelog
# uses: heinrichreimer/[email protected]
# with:
# filterByMilestone: false
# onlyLastTag: true
# pullRequests: true
# prWoLabels: true
# token: ${{ secrets.GITHUB_TOKEN }}
# verbose: true
# - name: Create GitHub release
# uses: softprops/action-gh-release@v1
# with:
# body: ${{ steps.changelog.outputs.changelog }}
# files: dist/**/*
# Test PyPI
# test_pypi_publish:
# name: Test publishing to PyPI
# needs: [build_wheels, build_sdist]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: artifact
# path: dist
# - uses: pypa/[email protected]
# with:
# user: __token__
# password: ${{ secrets.TEST_PYPI_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
# skip_existing: true
# Publish to PyPI
# pypi_publish:
# name: Publish to PyPI
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
# needs: [build_wheels, build_sdist]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: artifact
# path: dist
# - uses: pypa/[email protected]
# with:
# user: __token__
# password: ${{ secrets.PYPI_TOKEN }}