lightning/.github/workflows/release-pypi.yml

145 lines
4.3 KiB
YAML
Raw Permalink Normal View History

name: PyPI
# https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
push:
branches: [master, "release/*"]
release:
types: [published]
jobs:
# based on https://github.com/pypa/gh-action-pypi-publish
build-package:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
2021-10-26 11:58:20 +00:00
python-version: 3.9
- name: Install dependencies
run: >-
python -m pip install --user --upgrade setuptools wheel
- name: Build packages
2020-09-25 12:15:06 +00:00
run: |
python setup.py sdist bdist_wheel
2020-09-25 12:15:06 +00:00
ls -lh dist/
- uses: actions/upload-artifact@v2
with:
2021-01-21 16:12:29 +00:00
name: pypi-packages-${{ github.sha }}
path: dist
2021-02-03 17:35:42 +00:00
upload-package:
runs-on: ubuntu-20.04
needs: build-package
2021-05-19 19:15:58 +00:00
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
2021-02-03 17:35:42 +00:00
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: pypi-packages-${{ github.sha }}
path: dist
- run: ls -lh dist/
- name: Upload to release
2021-02-03 17:35:42 +00:00
uses: AButler/upload-release-assets@v2.0
with:
2021-02-03 17:35:42 +00:00
files: 'dist/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}
2021-01-21 16:12:29 +00:00
publish-package:
runs-on: ubuntu-20.04
needs: build-package
2021-05-19 19:15:58 +00:00
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
2021-01-21 16:12:29 +00:00
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: pypi-packages-${{ github.sha }}
path: dist
2021-02-03 17:35:42 +00:00
- run: ls -lh dist/
2021-01-21 16:12:29 +00:00
- name: Delay releasing
uses: juliangruber/sleep-action@v1
with:
time: 10m
# We do this, since failures on test.pypi aren't that bad
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@v1.4.1
with:
user: __token__
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
2020-09-30 12:37:52 +00:00
verbose: true
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@v1.4.1
with:
user: __token__
password: ${{ secrets.pypi_password }}
create-legacy-ckpt:
runs-on: ubuntu-20.04
needs: [build-package, publish-package]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
2021-10-26 11:58:20 +00:00
python-version: 3.9
- name: Reset caching
run: python -c "import time; days = time.time() / 60 / 60 / 24; print(f'TIME_PERIOD=d{int(days / 2) * 2}')" >> $GITHUB_ENV
shell: bash
# Note: This uses an internal pip API and may not always work
# https://github.com/actions/cache/blob/master/examples.md#multiple-oss-in-a-workflow
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-td${{ env.TIME_PERIOD }}-${{ hashFiles('requirements/base.txt') }}
restore-keys: ${{ runner.os }}-pip-td${{ env.TIME_PERIOD }}-
- name: Install dependencies
run: |
pip install -r requirements.txt --find-links https://download.pytorch.org/whl/cpu/torch_stable.html --quiet
pip install awscli
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY_ID }}
aws-region: us-east-1
- uses: actions/download-artifact@v2
with:
2021-01-21 16:12:29 +00:00
name: pypi-packages-${{ github.sha }}
path: dist
- name: Pull files from S3
run: |
aws s3 cp --recursive s3://pl-public-data/legacy/checkpoints/ legacy/checkpoints/ # --acl public-read
ls -l legacy/checkpoints/
- name: Generate checkpoint
run: |
ls -lh dist/
2021-01-12 21:35:43 +00:00
pip install dist/*.whl
pl_ver=$(python -c "import pytorch_lightning as pl ; print(pl.__version__)" 2>&1)
# generate checkpoint to this version
bash legacy/generate_checkpoints.sh $pl_ver
- name: Push files to S3
working-directory: ./legacy
run: |
aws s3 sync legacy/checkpoints/ s3://pl-public-data/legacy/checkpoints/
zip -r checkpoints.zip checkpoints
aws s3 cp checkpoints.zip s3://pl-public-data/legacy/ --acl public-read