From e34d4cec1eb6392dda4f91301b44bbe2b790c988 Mon Sep 17 00:00:00 2001 From: zweien <278954153@qq.com> Date: Thu, 15 Jul 2021 10:53:07 +0800 Subject: [PATCH] ci: update ci for pypi, docker --- .github/workflows/docker.yml | 15 ++++------- .github/workflows/pypi.yml | 38 ++++++++++++++++++++++++++++ .github/workflows/python-package.yml | 4 +-- 3 files changed, 45 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 9fd50be..77f9f03 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,10 +2,11 @@ name: docker-build-push on: push: + branches: [master] pull_request: branches: [master] release: - types: [published, created, edited] + types: [published, edited] jobs: @@ -25,15 +26,8 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build and push - id: docker_build - uses: docker/build-push-action@v2 - with: - push: true - tags: ${{ secrets.DOCKERHUB_USERNAME }}/idrlnet:latest - - - name: Image digest - run: echo ${{ steps.docker_build.outputs.digest }} + name: Print event_name + run: echo "$GITHUB_EVENT_NAME, ${{ github.event_name }}, ${{ github.event.release.tag_name }}" - name: Get release version @@ -48,3 +42,4 @@ jobs: with: push: true tags: ${{ secrets.DOCKERHUB_USERNAME }}/idrlnet:${{ steps.get_version.outputs.RELEASE_VERSION }} + file: Dockerfile \ No newline at end of file diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..cb6853e --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,38 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions + +name: Publish to PyPI +on: + release: + types: [published, edited] + + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: [3.7] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install setuptools wheel twine + + - name: Publish to PyPI + env: + TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + run: | + python setup.py sdist bdist_wheel + twine upload --repository-url https://test.pypi.org/legacy/ dist/* + + diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 6ef0ee7..72f3bce 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -31,8 +31,8 @@ jobs: run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + # exit-zero treats all errors as warnings. Theg GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - python examples/simple_poisson/simple_poisson.py + python examples/simple_poisson/simple_poisson.py