We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b3bfc commit 4c30621Copy full SHA for 4c30621
1 file changed
.circleci/config.yml
@@ -37,9 +37,30 @@ jobs:
37
command: venv/bin/python ./bin/run_tests.py
38
no_output_timeout: 30m
39
40
+ linux-aarch64:
41
+ machine:
42
+ image: ubuntu-2004:2022.04.1
43
+ resource_class: arm.medium
44
+ environment:
45
+ PYTHON: python3
46
+ # Temporarily restrict the tests that are run on CircleCI to prevent
47
+ # test timeouts.
48
+ PYTEST_ADDOPTS: -k "unit_test or main_tests or test_0_basic or test_docker_images"
49
+ steps:
50
+ - checkout
51
+
52
+ - run:
53
+ name: Prepare the environment.
54
+ command: bash .circleci/prepare.sh
55
56
+ name: Test.
57
+ command: venv/bin/python ./bin/run_tests.py
58
+ no_output_timeout: 30m
59
60
workflows:
61
version: 2
62
all-tests:
63
jobs:
64
- osx-python3.9
65
- linux-python3.9
66
+ - linux-aarch64
0 commit comments