File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ case $(uname) in
7
7
8
8
Linux)
9
9
MPI=" ${MPI:- mpich} "
10
- echo " Installing $MPI with apt"
10
+ echo " ::group:: Installing $MPI with apt"
11
11
sudo apt update
12
12
case $MPI in
13
13
mpich)
@@ -21,11 +21,12 @@ case $(uname) in
21
21
exit 1
22
22
;;
23
23
esac
24
+ echo " ::endgroup::"
24
25
;;
25
26
26
27
Darwin)
27
28
MPI=" ${MPI:- mpich} "
28
- echo " Installing $MPI with brew"
29
+ echo " ::group:: Installing $MPI with brew"
29
30
case $MPI in
30
31
mpich)
31
32
brew install mpich
@@ -38,11 +39,12 @@ case $(uname) in
38
39
exit 1
39
40
;;
40
41
esac
42
+ echo " ::endgroup::"
41
43
;;
42
44
43
45
Windows* | MINGW* | MSYS* )
44
46
MPI=" ${MPI:- msmpi} "
45
- echo " Installing $MPI "
47
+ echo " ::group:: Installing $MPI "
46
48
case $MPI in
47
49
msmpi)
48
50
sdir=$( dirname " ${BASH_SOURCE[0]} " )
@@ -53,6 +55,7 @@ case $(uname) in
53
55
exit 1
54
56
;;
55
57
esac
58
+ echo " ::endgroup::"
56
59
;;
57
60
58
61
* )
You can’t perform that action at this time.
0 commit comments