Merge branch 'main' into minor-fix #1
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
name: PyPI Nightly Build | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs at midnight UTC every day | |
workflow_dispatch: | |
inputs: | |
build-type: | |
description: 'Choose build type: nightly or release' | |
required: true | |
default: 'release' | |
options: | |
- nightly | |
- release | |
jobs: | |
build-and-publish: | |
runs-on: linux.g5.12xlarge.nvidia.gpu | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
pip install -r requirements.txt | |
- uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
with: | |
runner: ${{ matrix.runs-on }} | |
gpu-arch-type: "cuda" | |
gpu-arch-version: "12.1" | |
script: | | |
conda create -n venv python=3.9 -y | |
conda activate venv | |
echo "::group::Install newer objcopy that supports --set-section-alignment" | |
yum install -y devtoolset-10-binutils | |
export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
python -m pip install --upgrade pip | |
pip install torch | |
pip install -r requirements.txt | |
pip install -r dev-requirements.txt | |
- name: Build package | |
run: | | |
if [ "${{ github.event_name }}" = "schedule" ]; then | |
export TORCHAO_NIGHTLY=1 | |
elif [ "${{ github.event.inputs['build-type'] }}" = "nightly" ]; then | |
export TORCHAO_NIGHTLY=1 | |
fi | |
python setup.py sdist bdist_wheel | |
pytest test --verbose -s | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
repository_url: https://upload.pypi.org/legacy/ | |
packages_dir: dist/ | |
# - name: Open issue on failure | |
# if: ${{ failure() && github.event_name == 'schedule' }} | |
# uses: dacbd/create-issue-action@v1 | |
# with: | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# title: Nightly Build failed | |
# body: Commit ${{ github.sha }} daily scheduled [CI run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) failed, please check why | |
# assignees: '' |