Skip to content

Commit 89e10c8

Browse files
author
David Read
committedJul 19, 2019
Fix circleci error: E: Unable to locate package openjdk-8-jdk
This occurred because the docker/python:2 image switched from Debian stretch to buster this week. Buster uses openjdk 11 instead of 8, but even with this CKAN was unable to talk to Solr - maybe to do with AppArmor enabled in Buster. It was just easiest to pin back to stretch.
1 parent 740bb6b commit 89e10c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: python:2
5+
- image: python:2-stretch
66
environment:
77
CKAN_DATASTORE_POSTGRES_DB: datastore_test
88
CKAN_DATASTORE_POSTGRES_READ_USER: datastore_read
@@ -29,7 +29,7 @@ jobs:
2929
- checkout
3030

3131
- run: |
32-
# SO Dependencies
32+
# OS Dependencies
3333
apt update
3434
case $CIRCLE_NODE_INDEX in
3535
$NODE_TESTS_CONTAINER)

0 commit comments

Comments
 (0)
Please sign in to comment.