Skip to content

Commit

Permalink
Update tests.yml (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas-Schaub authored Jan 26, 2024
1 parent bf0885d commit e8cf414
Showing 1 changed file with 66 additions and 9 deletions.
75 changes: 66 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ on:
- main
- master
- dev
push:
branches-ignore:
- main
- master
- dev
# workflow_call:
# secrets:
# DOCKER_USERNAME:
# description: 'Docker Hub username'
# required: true
# DOCKER_TOKEN:
# description: 'Docker Hub password'
# required: true
# description: 'Docker Hub username'
# required: true
# DOCKER_TOKEN:
# description: 'Docker Hub password'
# required: true

permissions:
contents: read
Expand All @@ -19,13 +37,14 @@ jobs:
name: Test "${{ matrix.package_name }}"
needs: package-filter
strategy:
fail-fast: false
matrix: ${{fromJson(needs.package-filter.outputs.matrix)}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Poetry
Expand All @@ -50,13 +69,51 @@ jobs:
poetry install
poetry run pytest -v
# docker:
# name: Build Docker images
# needs: [package-filter, tests]
# uses: ./.github/workflows/docker.yml
# with:
# matrix: ${{ needs.package-filter.outputs.matrix }}
# push: true
# secrets:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}

docker:
name: Build Docker images
name: Docker "${{ matrix.package_name }}"
needs: [package-filter, tests]
uses: ./.github/workflows/docker.yml
with:
matrix: ${{ needs.package-filter.outputs.matrix }}
push: false
secrets:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }}
strategy:
fail-fast: false
matrix: ${{fromJson(needs.package-filter.outputs.matrix)}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get | Docker Tag
id: docker_tag
run: |
package_dir="${{ matrix.package_dir }}"
version=$(cat ${package_dir}/VERSION)
tag=polusai/${{ matrix.package_name }}:${version}
echo "tag=${tag}" >> $GITHUB_OUTPUT
- name: Setup | Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login | DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Check | Image exists
run: |
tag=${{ steps.docker_tag.outputs.tag }}
docker pull ${tag} > /dev/null \
&& $(echo "::error::${tag} already exists on DockerHub" && exit 1) \
|| echo "success"
- name: Publish | Docker Image
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:${{ matrix.package_dir }}"
platforms: linux/amd64,linux/arm64
push: false
tags: ${{ steps.docker_tag.outputs.tag }}

0 comments on commit e8cf414

Please sign in to comment.