Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI docker images with CircleCI python images #5720

Merged
merged 1 commit into from
Jan 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ jobs:

admin-tests:
docker:
- image: gcr.io/cloud-builders/docker
- image: cimg/python:3.7
steps:
- run: apt-get install -y make jq
- run: sudo apt update && sudo apt-get install -y make jq
- checkout
- setup_remote_docker
- run:
Expand All @@ -239,9 +239,9 @@ jobs:

fetch-tor-debs:
docker:
- image: gcr.io/cloud-builders/docker
- image: cimg/python:3.7
steps:
- run: apt-get install -y make virtualenv python3-pip enchant jq
- run: sudo apt-get update && sudo apt-get install -y make virtualenv python3-pip enchant jq rsync
- checkout
- setup_remote_docker
- run:
Expand Down Expand Up @@ -369,12 +369,12 @@ jobs:

deb-tests:
docker:
- image: gcr.io/cloud-builders/docker
- image: cimg/python:3.7
environment:
LC_ALL: C.UTF-8
LANG: C.UTF-8
steps:
- run: apt-get install -y make virtualenv enchant jq python3-dev build-essential
- run: sudo apt-get update && sudo apt-get install -y make virtualenv enchant jq python3-dev build-essential rsync
- checkout
- setup_remote_docker
- run:
Expand All @@ -386,12 +386,12 @@ jobs:

deb-tests-focal:
docker:
- image: gcr.io/cloud-builders/docker
- image: cimg/python:3.7
environment:
LC_ALL: C.UTF-8
LANG: C.UTF-8
steps:
- run: apt-get install -y make virtualenv enchant jq python3-dev build-essential
- run: sudo apt-get update && sudo apt-get install -y make virtualenv enchant jq python3-dev build-essential rsync
- checkout
- setup_remote_docker
- run:
Expand Down