From 89e10c8b183e7ac5fe0345e4cb1fe24c331afe45 Mon Sep 17 00:00:00 2001 From: David Read Date: Fri, 19 Jul 2019 13:54:44 +0100 Subject: [PATCH] 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. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 552c2f47131..36c1d2af5be 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: test: docker: - - image: python:2 + - image: python:2-stretch environment: CKAN_DATASTORE_POSTGRES_DB: datastore_test CKAN_DATASTORE_POSTGRES_READ_USER: datastore_read @@ -29,7 +29,7 @@ jobs: - checkout - run: | - # SO Dependencies + # OS Dependencies apt update case $CIRCLE_NODE_INDEX in $NODE_TESTS_CONTAINER)