From 209562435985195cfd5cf162b1464c6bb581c6a2 Mon Sep 17 00:00:00 2001 From: alexander-gesinn Date: Tue, 17 Dec 2024 10:14:53 +0100 Subject: [PATCH] chore (ci): refactor workflow --- .github/workflows/test.yml | 57 +++++++++++++++++++++++++++++--------- 1 file changed, 44 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eda6b77..8bfed01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,22 +1,43 @@ name: Tests -on: [push, pull_request] +on: + push: + pull_request: + workflow_dispatch: + jobs: test: - runs-on: ubuntu-latest + strategy: + matrix: + include: #ckan-image see https://github.com/ckan/ckan-docker-base, ckan-version controls other image tags + - ckan-version: "2.9" + ckan-image: "2.9-py3.9" + solr-image: "2.9-solr8" + experimental: false + - ckan-version: "2.10" + ckan-image: "2.10-py3.10" + solr-image: "2.10-solr8" + experimental: false + - ckan-version: "2.11" + ckan-image: "2.11-py3.10" + solr-image: "2.11-solr9" + experimental: false + fail-fast: false + + runs-on: ubuntu-22.04 container: - # The CKAN version tag of the Solr and Postgres containers should match - # the one of the container the tests run on. - # You can switch this base image with a custom image tailored to your project - image: openknowledge/ckan-dev:2.9 + image: ckan/ckan-dev:${{ matrix.ckan-image }} + options: --user root services: solr: - image: ckan/ckan-solr-dev:2.9 + image: ckan/ckan-solr:${{ matrix.solr-image }} postgres: - image: ckan/ckan-postgres-dev:2.9 + image: ckan/ckan-postgres-dev:${{ matrix.ckan-version }} env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: postgres + ports: + - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 redis: image: redis:3 @@ -29,20 +50,30 @@ jobs: CKAN_REDIS_URL: redis://redis:6379/1 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + continue-on-error: ${{ matrix.experimental }} + + - name: Pin setuptools for ckan 2.9 only + if: ${{ matrix.ckan-version == 2.9 }} + run: pip install "setuptools>=44.1.0,<71" + continue-on-error: ${{ matrix.experimental }} + - name: Install requirements # Install any extra requirements your extension has here (dev requirements, other extensions etc) run: | pip install -r requirements.txt pip install -r dev-requirements.txt pip install -e . - - name: Setup extension - # Extra initialization steps - run: | + pip install -U requests[security] # Replace default path to CKAN core config file with the one on the container sed -i -e 's/use = config:.*/use = config:\/srv\/app\/src\/ckan\/test-core.ini/' test.ini + - name: Setup extension + continue-on-error: ${{ matrix.experimental }} + run: | ckan -c test.ini db init + - name: Run tests - run: pytest --ckan-ini=test.ini --cov=ckanext.cancel_dataset_creation --disable-warnings ckanext/cancel_dataset_creation + continue-on-error: ${{ matrix.experimental }} + run: pytest --ckan-ini=test.ini --cov=ckanext.cancel_dataset_creation --disable-warnings ckanext/cancel_dataset_creation --junit-xml=/tmp/artifacts/junit/results.xml