Skip to content

Commit

Permalink
[QOLDEV-1011] pin Solr test container versions for each environment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrawnCA committed Dec 17, 2024
1 parent 176c6b9 commit db31f05
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,16 @@ jobs:
strategy:
fail-fast: false
matrix:
ckan-version: ["2.11", "2.10", 2.9]
experimental: [false]
include:
- ckan-version: "2.11"
solr-version: 9
experimental: false
- ckan-version: "2.10"
solr-version: 8
experimental: false
- ckan-version: 2.9
solr-version: 8
experimental: false
- ckan-version: 'master'
experimental: true #master is unstable, good to know if we are compatible or not

Expand All @@ -37,6 +44,7 @@ jobs:
container: drevops/ci-runner:23.12.0
env:
CKAN_VERSION: ${{ matrix.ckan-version }}
SOLR_VERSION: ${{ matrix.solr-version }}

steps:
# Patch https://github.com/actions/runner/issues/863
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:
- default

solr:
image: ckan/ckan-solr:${CKAN_VERSION}-solr9
image: ckan/ckan-solr:${CKAN_VERSION}-solr${SOLR_VERSION}
ports:
- "8983"
environment:
Expand Down

0 comments on commit db31f05

Please sign in to comment.