update aviso normalizer #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Unit tests and builds" | |
on: | |
push: | |
branches: ['**'] | |
release: | |
types: [prereleased, released] | |
env: | |
BASE_IMAGE_NAME: "${{ vars.DOCKER_ORG }}/nansat_base" | |
TESTING_IMAGE_NAME: metanorm_tests | |
jobs: | |
tests: | |
name: Run unit tests and build package | |
runs-on: 'ubuntu-latest' | |
env: | |
latest: ${{ matrix.python_version == '3.11' && 'true' || '' }} | |
strategy: | |
matrix: | |
python_version: | |
- '3.7' | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASS }} | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Build testing image | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./docker | |
file: ./docker/Dockerfile_tests | |
build-args: | | |
BASE_IMAGE=${{ env.BASE_IMAGE_NAME }}:latest-python${{ matrix.python_version }} | |
push: false | |
load: true | |
tags: ${{ env.TESTING_IMAGE_NAME }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
# Temp fix | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
- name: 'Run tests' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: > | |
docker run --rm | |
-v "$(pwd):/src" | |
-e "GITHUB_ACTIONS=$GITHUB_ACTIONS" | |
-e "GITHUB_REF=$GITHUB_REF" | |
-e "GITHUB_SHA=$GITHUB_SHA" | |
-e "GITHUB_HEAD_REF=$GITHUB_HEAD_REF" | |
-e "GITHUB_REPOSITORY=$GITHUB_REPOSITORY" | |
-e "GITHUB_RUN_ID=$GITHUB_RUN_ID" | |
-e "GITHUB_TOKEN=$GITHUB_TOKEN" | |
"${TESTING_IMAGE_NAME}" | |
bash -c "coverage run --source=./metanorm -m unittest discover tests" | |
- name: 'Install Python 3.11' | |
if: ${{ env.latest }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: 'Upload coverage to coveralls.io' | |
if: ${{ env.latest }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: pip install coveralls && coveralls --service=github | |
publish_python_package: | |
name: Build Python package and publish it as a release artifact | |
runs-on: 'ubuntu-latest' | |
needs: 'tests' | |
if: ${{ github.event_name == 'release' }} | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4 | |
- name: 'Install Python 3.11' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: 'Install build tools' | |
run: pip install build | |
- name: 'Build Python package' | |
run: python -m build | |
- name: 'Deploy package to the Github release' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: 'dist/*' | |
file_glob: true | |
tag: ${{ github.ref }} | |
... |