Skip to content

Commit

Permalink
Reenable 2.9 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Dec 13, 2024
1 parent 24a1554 commit 2df1f55
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ckan29-solr8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: CKAN 2.9 with Solr 8

on: push

jobs:
call-reusable-workflow:
uses: ./.github/workflows/reusable.yml
with:
ckan_version: "2.9"
ckan_branch: "dev-v2.9"
solr_version: "8"
11 changes: 11 additions & 0 deletions .github/workflows/ckan29-solr9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: CKAN 2.9 with Solr 9

on: push

jobs:
call-reusable-workflow:
uses: ./.github/workflows/reusable.yml
with:
ckan_version: "2.9"
ckan_branch: "dev-v2.9"
solr_version: "9"
4 changes: 4 additions & 0 deletions .github/workflows/reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ jobs:
# Change to `pip install .` when #7221 is merged
pip install -e .
pip check
- name: Install requirements (CKAN 2.9 only)
if: ${{ inputs.ckan_branch == 'dev-v2.9'}}
run: |
pip install -u pytest-rerunfailures
- name: Set config file
run: |
cd ckan
Expand Down

0 comments on commit 2df1f55

Please sign in to comment.