We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91bf042 commit 22f6f7bCopy full SHA for 22f6f7b
1 file changed
tools/github_actions_test.sh
@@ -4,8 +4,18 @@ set -eo pipefail
4
5
if [[ "${CI_OS_NAME}" == "ubuntu"* ]]; then
6
CONDITION="not (ultraslowtest or pgtest)"
7
-else # macOS or Windows
+elif [[ "${CI_OS_NAME}" == "macos"* ]]; then
8
+ # detect arch and run slowtest on arm64 only (pgtest is already ultraslow on macOS)
9
+ if [[ "$(uname -m)" == "arm64" ]]; then
10
+ CONDITION="not (ultraslowtest or pgtest)"
11
+ else
12
+ CONDITION="not (slowtest or pgtest)"
13
+ fi
14
+elif [[ "${CI_OS_NAME}" == "windows"* ]]; then
15
CONDITION="not (slowtest or pgtest)"
16
+else:
17
+ echo "✕ ERROR: Unrecognized CI_OS_NAME=${CI_OS_NAME}"
18
+ exit 1
19
fi
20
if [ "${MNE_CI_KIND}" == "notebook" ]; then
21
USE_DIRS=mne/viz/
0 commit comments