Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Try to upgrade to Ubuntu22.04
  • Loading branch information
DreamOfIce authored Jan 30, 2023
commit 4dcede91e7d5b3c81e390946caad43b4426d2bc0
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ orbs:
win: circleci/[email protected]

executors:
bionic:
ubuntu:
docker:
- image: buildpack-deps:bionic
- image: ubuntu-2204:current

jobs:
flake8:
executor: bionic
executor: ubuntu
steps:
- checkout
- run:
Expand All @@ -25,7 +25,7 @@ jobs:
- run: python2 -m flake8 --show-source --statistics
- run: python3 -m flake8 --show-source --statistics
test-linux:
executor: bionic
executor: ubuntu
environment:
EMSDK_NOTTY: "1"
# This is needed because the old gcc-7 that is installed on debian/bionic
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
test/test_path_preservation.ps1

build-docker-image:
executor: bionic
executor: ubuntu
steps:
- checkout
- run:
Expand All @@ -150,7 +150,7 @@ jobs:
command: make -C ./docker version=tot test

publish-docker-image:
executor: bionic
executor: ubuntu
steps:
- checkout
- run:
Expand All @@ -170,7 +170,7 @@ jobs:
make -C ./docker version=${CIRCLE_TAG} alias=latest push

test-bazel-linux:
executor: bionic
executor: ubuntu
steps:
- checkout
- run: apt-get install -q -y curl gnupg
Expand Down