From f264eaf424237e11a5d1f2d6199a2d0805eb37af Mon Sep 17 00:00:00 2001 From: Clemens Neudecker <952378+cneud@users.noreply.github.com> Date: Thu, 13 Apr 2023 12:28:03 +0200 Subject: [PATCH] test CircleCI machine executor (more RAM?) --- .circleci/config.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 23eb724..4ae0994 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,8 +3,8 @@ version: 2 jobs: build-python37: - docker: - - image: python:3.7 + machine: + - image: ubuntu-2004:2023.02.1 steps: - checkout - restore_cache: @@ -20,8 +20,8 @@ jobs: - run: make smoke-test build-python38: - docker: - - image: python:3.8 + machine: + - image: ubuntu-2004:2023.02.1 steps: - checkout - restore_cache: @@ -40,6 +40,5 @@ workflows: version: 2 build: jobs: - #- build-python36 - build-python37 - build-python38