bubmped up docker image used for ci steps

This commit is contained in:
kik-kik 2023-07-11 09:54:11 +02:00
Родитель 781c017962
Коммит 6b8bf21dd7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 77A4696F55505449
1 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -14,9 +14,15 @@
install_dependencies: &install_dependencies
name: install dependencies
command: |
# Update stretch repositories
# source:https://stackoverflow.com/a/76095392
sed -i \
-e 's/deb.debian.org/archive.debian.org/g' \
-e 's|security.debian.org|archive.debian.org/|g' \
-e '/stretch-updates/d' /etc/apt/sources.list
apt update
apt install -y libsnappy-dev openjdk-8-jre-headless
pip install tox coverage==5.3
pip install tox==4.6.4 coverage==5.3
save_cache_settings: &save_cache_settings
key: v1-python_mozetl-{{ checksum "setup.py" }}
@ -70,11 +76,11 @@ jobs:
<<: *test_settings
parallelism: 4
docker:
- image: python:3.7-stretch
- image: python:3.7.11-stretch
lint:
docker:
- image: python:3.7-stretch
- image: python:3.7.11-stretch
working_directory: ~/python_mozetl
steps:
- checkout
@ -88,7 +94,7 @@ jobs:
docs:
docker:
- image: python:3.7-stretch
- image: python:3.7.11-stretch
working_directory: ~/python_mozetl
steps:
- checkout