2020-09-19 22:28:34 +00:00
|
|
|
name: Nightly events
|
|
|
|
|
|
|
|
# https://jasonet.co/posts/scheduled-actions/
|
2021-01-06 16:59:42 +00:00
|
|
|
# https://github.community/t/distinct-job-for-each-schedule/17811/2
|
2020-09-19 22:28:34 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
2021-07-14 15:04:33 +00:00
|
|
|
# At the end of every day
|
|
|
|
- cron: "0 0 * * *"
|
|
|
|
|
|
|
|
env:
|
|
|
|
PUSH_TO_HUB: true
|
2020-09-19 22:28:34 +00:00
|
|
|
|
|
|
|
# based on https://github.com/pypa/gh-action-pypi-publish
|
|
|
|
jobs:
|
2020-09-25 13:58:01 +00:00
|
|
|
pypi-release:
|
2021-08-02 18:12:13 +00:00
|
|
|
if: ${{ github.repository_owner == 'PyTorchLightning' }}
|
2020-09-19 22:28:34 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
steps:
|
2021-01-06 16:59:42 +00:00
|
|
|
# does nightly releases from feature branch
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
2021-07-14 15:04:33 +00:00
|
|
|
python-version: 3.8
|
2021-01-06 16:59:42 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: >-
|
|
|
|
python -m pip install --user --upgrade setuptools wheel
|
|
|
|
|
|
|
|
- name: Build packages
|
|
|
|
run: |
|
|
|
|
python .github/prepare-nightly_version.py
|
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
ls -lh dist/
|
|
|
|
|
|
|
|
- name: Delay releasing
|
|
|
|
uses: juliangruber/sleep-action@v1
|
|
|
|
with:
|
|
|
|
time: 5m
|
|
|
|
|
2021-01-08 15:36:49 +00:00
|
|
|
# We do this, since failures on test.pypi aren't that bad
|
2021-01-06 16:59:42 +00:00
|
|
|
- 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/
|
|
|
|
verbose: true
|
2020-09-25 13:58:01 +00:00
|
|
|
|
|
|
|
docker-XLA:
|
2021-08-02 18:12:13 +00:00
|
|
|
if: ${{ github.repository_owner == 'PyTorchLightning' }}
|
2020-09-25 13:58:01 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-07-14 15:04:33 +00:00
|
|
|
python_version: ["3.7"]
|
|
|
|
xla_version: ["1.6", "1.7", "1.8", "1.9"] # todo: , "nightly"
|
2021-08-02 18:12:13 +00:00
|
|
|
|
2020-09-25 13:58:01 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-10-25 12:16:10 +00:00
|
|
|
# https://github.com/docker/setup-buildx-action
|
2020-10-26 10:47:09 +00:00
|
|
|
# Set up Docker Buildx - to use cache-from and cache-to argument of buildx command
|
|
|
|
- uses: docker/setup-buildx-action@v1
|
2020-10-25 12:16:10 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
2020-09-25 13:58:01 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2020-10-25 12:16:10 +00:00
|
|
|
|
|
|
|
- name: Publish XLA to Docker Hub
|
2020-11-04 09:08:37 +00:00
|
|
|
# publish master/release
|
2020-10-25 12:16:10 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
build-args: |
|
|
|
|
PYTHON_VERSION=${{ matrix.python_version }}
|
|
|
|
XLA_VERSION=${{ matrix.xla_version }}
|
|
|
|
file: dockers/base-xla/Dockerfile
|
2021-07-14 15:04:33 +00:00
|
|
|
push: ${{ env.PUSH_TO_HUB }}
|
2020-10-25 12:16:10 +00:00
|
|
|
tags: pytorchlightning/pytorch_lightning:base-xla-py${{ matrix.python_version }}-torch${{ matrix.xla_version }}
|
2020-09-25 13:58:01 +00:00
|
|
|
timeout-minutes: 55
|
|
|
|
|
2021-07-14 15:04:33 +00:00
|
|
|
docker-CUDA:
|
2021-08-02 18:12:13 +00:00
|
|
|
if: ${{ github.repository_owner == 'PyTorchLightning' }}
|
2020-09-25 13:58:01 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-07-14 15:04:33 +00:00
|
|
|
python_version: ["3.6", "3.7", "3.8", "3.9"]
|
|
|
|
pytorch_version: ["1.6", "1.7", "1.8", "1.9"]
|
|
|
|
exclude:
|
|
|
|
- python_version: "3.9"
|
|
|
|
pytorch_version: "1.6"
|
2020-10-26 10:47:09 +00:00
|
|
|
|
2020-09-25 13:58:01 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-10-26 10:47:09 +00:00
|
|
|
- uses: docker/setup-buildx-action@v1
|
2020-10-25 12:16:10 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
2020-09-25 13:58:01 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2020-10-25 12:16:10 +00:00
|
|
|
|
|
|
|
- name: Publish CUDA to Docker Hub
|
2020-11-04 09:08:37 +00:00
|
|
|
# publish master/release
|
2020-10-25 12:16:10 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
build-args: |
|
|
|
|
PYTHON_VERSION=${{ matrix.python_version }}
|
|
|
|
PYTORCH_VERSION=${{ matrix.pytorch_version }}
|
|
|
|
file: dockers/base-cuda/Dockerfile
|
2021-07-14 15:04:33 +00:00
|
|
|
push: ${{ env.PUSH_TO_HUB }}
|
2020-10-25 12:16:10 +00:00
|
|
|
tags: pytorchlightning/pytorch_lightning:base-cuda-py${{ matrix.python_version }}-torch${{ matrix.pytorch_version }}
|
2020-09-25 13:58:01 +00:00
|
|
|
timeout-minutes: 55
|
|
|
|
|
2021-07-14 15:04:33 +00:00
|
|
|
docker-Conda:
|
2021-08-02 18:12:13 +00:00
|
|
|
if: ${{ github.repository_owner == 'PyTorchLightning' }}
|
2021-07-14 15:04:33 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
python_version: ["3.6", "3.7", "3.8", "3.9"]
|
|
|
|
pytorch_version: ["1.6", "1.7", "1.8", "1.9", "1.10"]
|
|
|
|
exclude:
|
|
|
|
- python_version: "3.9"
|
|
|
|
pytorch_version: "1.6"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
# see: https://pytorch.org/get-started/previous-versions/
|
|
|
|
- run: |
|
|
|
|
cuda=$(python -c "from distutils.version import LooseVersion as LVer ; print(11.1 if LVer('${{matrix.pytorch_version}}') > LVer('1.7') else 10.2)" 2>&1)
|
|
|
|
echo "::set-output name=CUDA::$cuda"
|
|
|
|
id: extend
|
|
|
|
|
2020-10-02 09:26:21 +00:00
|
|
|
- name: Publish Conda to Docker Hub
|
2020-11-04 09:08:37 +00:00
|
|
|
# publish master/release
|
2020-10-25 12:16:10 +00:00
|
|
|
uses: docker/build-push-action@v2
|
2020-09-25 13:58:01 +00:00
|
|
|
with:
|
2020-10-25 12:16:10 +00:00
|
|
|
build-args: |
|
|
|
|
PYTHON_VERSION=${{ matrix.python_version }}
|
|
|
|
PYTORCH_VERSION=${{ matrix.pytorch_version }}
|
2020-10-26 10:47:09 +00:00
|
|
|
CUDA_VERSION=${{ steps.extend.outputs.CUDA }}
|
|
|
|
file: dockers/base-conda/Dockerfile
|
2021-07-14 15:04:33 +00:00
|
|
|
push: ${{ env.PUSH_TO_HUB }}
|
2020-10-26 10:47:09 +00:00
|
|
|
tags: pytorchlightning/pytorch_lightning:base-conda-py${{ matrix.python_version }}-torch${{ matrix.pytorch_version }}
|
2020-09-25 13:58:01 +00:00
|
|
|
timeout-minutes: 55
|
2021-03-19 21:25:46 +00:00
|
|
|
|
2021-07-14 15:04:33 +00:00
|
|
|
docker-IPU:
|
2021-08-02 18:12:13 +00:00
|
|
|
if: ${{ github.repository_owner == 'PyTorchLightning' }}
|
2021-05-07 12:07:29 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-07-14 15:04:33 +00:00
|
|
|
- python_version: "3.8"
|
|
|
|
pytorch_version: "1.7"
|
2021-05-07 12:07:29 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
# https://github.com/docker/setup-buildx-action
|
|
|
|
# Set up Docker Buildx - to use cache-from and cache-to argument of buildx command
|
|
|
|
- uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Publish IPU base to Docker Hub
|
|
|
|
# publish master/release
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
build-args: |
|
|
|
|
PYTHON_VERSION=${{ matrix.python_version }}
|
|
|
|
PYTORCH_VERSION=${{ matrix.pytorch_version }}
|
|
|
|
file: dockers/base-ipu/Dockerfile
|
2021-07-14 15:04:33 +00:00
|
|
|
push: ${{ env.PUSH_TO_HUB }}
|
2021-05-07 12:07:29 +00:00
|
|
|
tags: pytorchlightning/pytorch_lightning:base-ipu-py${{ matrix.python_version }}-torch${{ matrix.pytorch_version }}
|
|
|
|
timeout-minutes: 55
|
|
|
|
|
|
|
|
- name: Publish IPU CI runner to Docker Hub
|
|
|
|
# publish master/release
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
build-args: |
|
|
|
|
PYTHON_VERSION=${{ matrix.python_version }}
|
|
|
|
PYTORCH_VERSION=${{ matrix.pytorch_version }}
|
|
|
|
file: dockers/ipu-ci-runner/Dockerfile
|
2021-07-14 15:04:33 +00:00
|
|
|
push: ${{ env.PUSH_TO_HUB }}
|
2021-05-07 12:07:29 +00:00
|
|
|
tags: pytorchlightning/pytorch_lightning:ipu-ci-runner-py${{ matrix.python_version }}
|
|
|
|
timeout-minutes: 55
|