Skip to content

ALE v0.10.1

ALE v0.10.1 #9

Workflow file for this run

# workflow on publish
# 1. build the wheels for relevant systems
# 2. download artifacts and upload to PyPI
name: Push wheels to pypi
on:
release:
types: [ published ]
jobs:
build-wheels:
name: ${{ matrix.runs-on }} • ${{ matrix.arch }}
defaults:
run:
shell: bash
strategy:
matrix:
include:
- runs-on: ubuntu-latest
arch: x86_64
- runs-on: windows-latest
arch: AMD64
- runs-on: macos-12
arch: x86_64
- runs-on: macos-12
arch: arm64
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
if: runner.os == 'linux'
id: buildx
uses: docker/setup-buildx-action@v3
with:
install: true
- name: Build Docker image with vcpkg
if: runner.os == 'linux'
# using build-push-action (without push) to make use of cache arguments
uses: docker/build-push-action@v6
with:
context: .
file: .github/docker/manylinux-vcpkg.Dockerfile
tags: manylinux-vcpkg:latest
push: false
load: true
- uses: microsoft/setup-msbuild@v2
if: runner.os == 'Windows'
# TODO(jfarebro): 02/16/2023 - There's a bug where pkg-config isn't installed on the macOS
# runner. See: https://github.com/actions/runner-images/pull/7125
- name: Install pkg-config on macOS
if: runner.os == 'macOS'
run: brew install pkg-config
- uses: lukka/run-vcpkg@v11
if: runner.os != 'linux'
with:
vcpkgGitCommitId: "8150939b69720adc475461978e07c2d2bf5fb76e"
# There's a permissions issue with the cache
# https://github.com/microsoft/vcpkg/issues/20121
doNotCache: true
- name: Download and unpack ROMs
run: ./scripts/download_unpack_roms.sh
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: "${{ matrix.arch }}"
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.runs-on }}-${{ matrix.arch }}
path: ./wheelhouse/*.whl
push-pypi:
name: Deploy wheels to PyPi
runs-on: ubuntu-latest
needs: build-wheels
permissions:
id-token: write
steps:
# create the `ale_py-*.*.*.tar.gz` for source building
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install setuptools
- run: python setup.py sdist
- uses: actions/download-artifact@v4
with:
name: wheels-windows-latest-AMD64
path: dist
- uses: actions/download-artifact@v4
with:
name: wheels-ubuntu-latest-x86_64
path: dist
- uses: actions/download-artifact@v4
with:
name: wheels-macos-12-x86_64
path: dist
- uses: actions/download-artifact@v4
with:
name: wheels-macos-12-arm64
path: dist
- run: ls dist/
- name: Publish to PyPi test
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
packages-dir: dist/
print-hash: true