forked from Farama-Foundation/stable-retro
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c968e8
commit bee4827
Showing
5 changed files
with
287 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,79 @@ | ||
name: build-publish-silicon | ||
on: push | ||
# name: build-publish-silicon | ||
# on: push | ||
|
||
# on: | ||
# workflow_dispatch: | ||
# push: | ||
# branches: [master] | ||
# pull_request: | ||
# branches: [master] | ||
# release: | ||
# types: [published] | ||
# # on: | ||
# # workflow_dispatch: | ||
# # push: | ||
# # branches: [master] | ||
# # pull_request: | ||
# # branches: [master] | ||
# # release: | ||
# # types: [published] | ||
|
||
jobs: | ||
build_wheel_sdist: | ||
name: Build silicon wheel and sdist | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.10', '3.11', '3.12'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# jobs: | ||
# build_wheel_sdist: | ||
# name: Build silicon wheel and sdist | ||
# runs-on: macos-latest | ||
# strategy: | ||
# matrix: | ||
# python-version: ['3.10', '3.11', '3.12'] | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install system packages | ||
run: brew install pkg-config [email protected] libzip capnp cmake | ||
# - name: Install system packages | ||
# run: brew install pkg-config [email protected] libzip capnp cmake | ||
|
||
- name: Install python packages | ||
run: python3 -m pip install --upgrade pip build wheel | ||
# - name: Install python packages | ||
# run: python3 -m pip install --upgrade pip build wheel | ||
|
||
- name: Build project | ||
run: | | ||
export SDKROOT=$(xcrun --sdk macosx --show-sdk-path) | ||
python3 -m pip install -e .; | ||
# - name: Build project | ||
# run: | | ||
# export SDKROOT=$(xcrun --sdk macosx --show-sdk-path) | ||
# python3 -m pip install -e .; | ||
|
||
- name: Build wheel | ||
run: python3 -m build --wheel --sdist | ||
# - name: Build wheel | ||
# run: python3 -m build --wheel --sdist | ||
|
||
- name: Test | ||
run: | | ||
python3 -m pip uninstall stable-retro -y | ||
python3 -m pip install --no-cache dist/*.whl | ||
python3 -c 'import retro; env = retro.make("Airstriker-Genesis", render_mode="rgb_array"); env.reset(); print(env.step(env.action_space.sample())); env.close();' | ||
# - name: Test | ||
# run: | | ||
# python3 -m pip uninstall stable-retro -y | ||
# python3 -m pip install --no-cache dist/*.whl | ||
# python3 -c 'import retro; env = retro.make("Airstriker-Genesis", render_mode="rgb_array"); env.reset(); print(env.step(env.action_space.sample())); env.close();' | ||
|
||
upload_pypi: | ||
needs: build_wheel_sdist | ||
runs-on: ubuntu-latest | ||
# upload_pypi: | ||
# needs: build_wheel_sdist | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: report dist | ||
run: ls -la | ||
# steps: | ||
# - name: report dist | ||
# run: ls -la | ||
|
||
|
||
# upload_pypi: | ||
# needs: build_wheel_sdist | ||
# runs-on: ubuntu-latest | ||
# environment: pypi | ||
# permissions: | ||
# id-token: write | ||
# if: github.event_name == 'release' && github.event.action == 'published' | ||
# steps: | ||
# - name: Download all dists | ||
# uses: actions/download-artifact@v3 | ||
# with: | ||
# # Unpacks default artifact into dist/ | ||
# # If `name: artifact` is omitted, the action will create extra parent dir | ||
# name: artifact | ||
# path: dist | ||
# # upload_pypi: | ||
# # needs: build_wheel_sdist | ||
# # runs-on: ubuntu-latest | ||
# # environment: pypi | ||
# # permissions: | ||
# # id-token: write | ||
# # if: github.event_name == 'release' && github.event.action == 'published' | ||
# # steps: | ||
# # - name: Download all dists | ||
# # uses: actions/download-artifact@v3 | ||
# # with: | ||
# # # Unpacks default artifact into dist/ | ||
# # # If `name: artifact` is omitted, the action will create extra parent dir | ||
# # name: artifact | ||
# # path: dist | ||
|
||
# - name: Publish to PyPI | ||
# uses: pypa/gh-action-pypi-publish@release/v1 | ||
# with: | ||
# password: ${{ secrets.PYPI_API_TOKEN }} | ||
# # To test: | ||
# # with: | ||
# # repository_url: https://test.pypi.org/legacy/ | ||
# # - name: Publish to PyPI | ||
# # uses: pypa/gh-action-pypi-publish@release/v1 | ||
# # with: | ||
# # password: ${{ secrets.PYPI_API_TOKEN }} | ||
# # # To test: | ||
# # # with: | ||
# # # repository_url: https://test.pypi.org/legacy/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,90 @@ | ||
# This workflow will build and (if release) publish Python distributions to PyPI | ||
# For more information see: | ||
# - https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
# - https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | ||
# - Adapted from https://github.com/Farama-Foundation/PettingZoo/blob/e230f4d80a5df3baf9bd905149f6d4e8ce22be31/.github/workflows/build-publish.yml | ||
# # This workflow will build and (if release) publish Python distributions to PyPI | ||
# # For more information see: | ||
# # - https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
# # - https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | ||
# # - Adapted from https://github.com/Farama-Foundation/PettingZoo/blob/e230f4d80a5df3baf9bd905149f6d4e8ce22be31/.github/workflows/build-publish.yml | ||
|
||
name: build-publish | ||
# name: build-publish | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
release: | ||
types: [published] | ||
# on: | ||
# workflow_dispatch: | ||
# push: | ||
# branches: [master] | ||
# pull_request: | ||
# branches: [master] | ||
# release: | ||
# types: [published] | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-22.04] #, macos-11] - disable macos, as it's not working for a moment | ||
# jobs: | ||
# build_wheels: | ||
# name: Build wheels on ${{ matrix.os }} | ||
# runs-on: ${{ matrix.os }} | ||
# strategy: | ||
# matrix: | ||
# os: [ubuntu-22.04] #, macos-11] - disable macos, as it's not working for a moment | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
if: runner.os == 'Linux' | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: all | ||
# - name: Set up QEMU | ||
# if: runner.os == 'Linux' | ||
# uses: docker/setup-qemu-action@v2 | ||
# with: | ||
# platforms: all | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# Configure cibuildwheel to build native archs, and some emulated ones | ||
CIBW_ARCHS_LINUX: x86_64 # aarch64 - disable ARM, as it's not working for a moment | ||
#CIBW_ARCHS_MACOS: x86_64 arm64 - macos is disabled for a moment | ||
CIBW_BUILD_VERBOSITY: 3 # Increase verbosity to see what's going on | ||
CIBW_REPAIR_WHEEL_COMMAND_LINUX: > # Print additional info from auditwheel | ||
auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel} | ||
# - name: Build wheels | ||
# uses: pypa/[email protected] | ||
# env: | ||
# # Configure cibuildwheel to build native archs, and some emulated ones | ||
# CIBW_ARCHS_LINUX: x86_64 # aarch64 - disable ARM, as it's not working for a moment | ||
# #CIBW_ARCHS_MACOS: x86_64 arm64 - macos is disabled for a moment | ||
# CIBW_BUILD_VERBOSITY: 3 # Increase verbosity to see what's going on | ||
# CIBW_REPAIR_WHEEL_COMMAND_LINUX: > # Print additional info from auditwheel | ||
# auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel} | ||
|
||
- name: Report built wheels | ||
run: | | ||
ls -l ./wheelhouse/*.whl | ||
# - name: Report built wheels | ||
# run: | | ||
# ls -l ./wheelhouse/*.whl | ||
|
||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
# - name: Upload artifacts | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# path: ./wheelhouse/*.whl | ||
|
||
build_sdist: | ||
name: Build source distribution | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
# build_sdist: | ||
# name: Build source distribution | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
|
||
- name: Build sdist | ||
run: pipx run build --sdist | ||
# - name: Build sdist | ||
# run: pipx run build --sdist | ||
|
||
- name: Upload sdist | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: dist/*.tar.gz | ||
# - name: Upload sdist | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# path: dist/*.tar.gz | ||
|
||
upload_pypi: | ||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
environment: pypi | ||
permissions: | ||
id-token: write | ||
if: github.event_name == 'release' && github.event.action == 'published' | ||
steps: | ||
- name: Download all dists | ||
uses: actions/download-artifact@v3 | ||
with: | ||
# Unpacks default artifact into dist/ | ||
# If `name: artifact` is omitted, the action will create extra parent dir | ||
name: artifact | ||
path: dist | ||
# upload_pypi: | ||
# needs: [build_wheels, build_sdist] | ||
# runs-on: ubuntu-latest | ||
# environment: pypi | ||
# permissions: | ||
# id-token: write | ||
# if: github.event_name == 'release' && github.event.action == 'published' | ||
# steps: | ||
# - name: Download all dists | ||
# uses: actions/download-artifact@v3 | ||
# with: | ||
# # Unpacks default artifact into dist/ | ||
# # If `name: artifact` is omitted, the action will create extra parent dir | ||
# name: artifact | ||
# path: dist | ||
|
||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
# To test: | ||
# with: | ||
# repository_url: https://test.pypi.org/legacy/ | ||
# - name: Publish to PyPI | ||
# uses: pypa/gh-action-pypi-publish@release/v1 | ||
# with: | ||
# password: ${{ secrets.PYPI_API_TOKEN }} | ||
# # To test: | ||
# # with: | ||
# # repository_url: https://test.pypi.org/legacy/ |
Oops, something went wrong.