|
@@ -19,6 +19,9 @@ jobs:
|
|
|
runs-on: ubuntu-20.04
|
|
|
timeout-minutes: 20
|
|
|
strategy:
|
|
|
+ # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
|
|
|
+ # and reducing the risk that one of many runs would turn red again (read: intermittent tests)
|
|
|
+ fail-fast: false
|
|
|
matrix:
|
|
|
# XXX: When updating this, make sure you also update CI_NODE_TOTAL.
|
|
|
instance: [0, 1, 2, 3]
|
|
@@ -148,6 +151,9 @@ jobs:
|
|
|
runs-on: ubuntu-20.04
|
|
|
timeout-minutes: 20
|
|
|
strategy:
|
|
|
+ # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
|
|
|
+ # and reducing the risk that one of many runs would turn red again (read: intermittent tests)
|
|
|
+ fail-fast: false
|
|
|
matrix:
|
|
|
python-version: [3.8.12]
|
|
|
# XXX: When updating this, make sure you also update MATRIX_INSTANCE_TOTAL.
|
|
@@ -211,6 +217,9 @@ jobs:
|
|
|
runs-on: ubuntu-20.04
|
|
|
timeout-minutes: 30
|
|
|
strategy:
|
|
|
+ # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
|
|
|
+ # and reducing the risk that one of many runs would turn red again (read: intermittent tests)
|
|
|
+ fail-fast: false
|
|
|
matrix:
|
|
|
python-version: [3.8.12]
|
|
|
# XXX: When updating this, make sure you also update MATRIX_INSTANCE_TOTAL.
|