Skip to content

Commit

Permalink
[QOLDEV-1003] add testing of CKAN upstream master
Browse files Browse the repository at this point in the history
- Run tests on latest CKAN master branch for visibility, but don't require success
  • Loading branch information
ThrawnCA committed Nov 11, 2024
1 parent 6d90304 commit 7143de9
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ jobs:
runs-on: ubuntu-latest
needs: code_quality
strategy:
max-parallel: 4 #only 4 jobs at once
matrix:
ckan-version: ['2.11', '2.10', '2.9']
experimental: [false]
ckan-git-org: ['ckan']
include:
- ckan-version: '2.9'
Expand All @@ -45,6 +47,9 @@ jobs:
- ckan-version: '2.9'
ckan-git-version: 'qgov-master-2.9.9'
ckan-git-org: 'qld-gov-au'
- ckan-git-org: 'ckan'
ckan-git-version: 'master'
experimental: true #master is unstable, good to know if we are compatible or not

fail-fast: false

Expand Down Expand Up @@ -101,17 +106,18 @@ jobs:
timeout-minutes: 2

- name: Install requirements
continue-on-error: ${{ matrix.experimental }}
run: |
chmod u+x ./scripts/*
./scripts/build.sh
timeout-minutes: 15

- name: Setup CKAN
run: |
./scripts/init.sh
continue-on-error: ${{ matrix.experimental }}
run: ./scripts/init.sh
timeout-minutes: 15

- name: Run tests
run: |
./scripts/test.sh
continue-on-error: ${{ matrix.experimental }}
run: ./scripts/test.sh
timeout-minutes: 30

0 comments on commit 7143de9

Please sign in to comment.