From d4af50788fc3653adb0417e9095c64d6bb0bdf78 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Mon, 31 May 2021 18:29:38 -0600 Subject: [PATCH 1/2] CI: Activating CircleCI --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000000000..f1cf83092ac0e --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,18 @@ +version: 2.1 + +jobs: + test-arm: + machine: + image: ubuntu-2004:202101-01 + resource_class: arm.medium + environment: + ENV_FILE: ci/deps/circle-37-arm64.yaml + PYTEST_WORKERS: auto + PATTERN: "not slow and not network and not clipboard and not arm_slow" + steps: + - checkout + +workflows: + test: + jobs: + - test-arm From d4a4a38abded5a2dfaf1955f4dd306a567d3e53b Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Mon, 31 May 2021 18:41:57 -0600 Subject: [PATCH 2/2] Replacing checkout by a simple echo --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f1cf83092ac0e..5ff2f783e6a96 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,7 @@ jobs: PYTEST_WORKERS: auto PATTERN: "not slow and not network and not clipboard and not arm_slow" steps: - - checkout + - run: echo "CircleCI is working" workflows: test: