Skip to content

Commit

Permalink
Split CI to only build containers after main push
Browse files Browse the repository at this point in the history
  • Loading branch information
tiadams committed Feb 21, 2024
1 parent e1c1a9e commit 1d3b7ed
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 24 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/docker-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Python package

on:
push:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
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
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
build_docker_image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get Version Tags
id: versions
run: |
echo "BACKEND_VERSION=$(echo "$(<index/api/routes.py)" | grep -oP "(?<=version=\")[^\"]+")" >> "$GITHUB_OUTPUT"
- name: Docker Login
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push backend
uses: docker/build-push-action@v2
with:
file: Dockerfile
push: true
tags: |
ghcr.io/scai-bio/backend:latest
ghcr.io/scai-bio/backend:${{ steps.versions.outputs.BACKEND_VERSION }}
24 changes: 0 additions & 24 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,3 @@ jobs:
- name: Test with pytest
run: |
pytest
build_docker_image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get Version Tags
id: versions
run: |
echo "BACKEND_VERSION=$(echo "$(<index/api/routes.py)" | grep -oP "(?<=version=\")[^\"]+")" >> "$GITHUB_OUTPUT"
- name: Docker Login
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push backend
uses: docker/build-push-action@v2
with:
file: Dockerfile
push: true
tags: |
ghcr.io/scai-bio/backend:latest
ghcr.io/scai-bio/backend:${{ steps.versions.outputs.BACKEND_VERSION }}

0 comments on commit 1d3b7ed

Please sign in to comment.