Move documentation about Rosetta for macOS (arm64) #198
Workflow file for this run
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
# This files generates Python wheels for Linux | |
on: | |
push: | |
branches: 'master' | |
tags: '' # Restrict to blank tags | |
pull_request: | |
jobs: | |
dockercentos: | |
name: CentOS Docker | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
clean: false | |
- run: | | |
chmod a+x scripts/docker/build_pybinding.sh | |
docker run --rm -v `pwd`:/io lebarsfa/manylinux2010_x86_64-for-codac /io/scripts/docker/build_pybinding.sh | |
ls wheelhouse | |
- uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: "wheelhouse/*.whl" | |
overwrite: true | |
tag_name: autotagname-${{ github.sha }} | |
if: (github.event_name != 'pull_request')&&(github.ref_name == 'master') |