@@ -15,46 +15,30 @@ jobs:
15
15
- name : Install
16
16
run : |
17
17
( cd /tmp
18
- git clone --depth 1 https://gitlab.com/libeigen/eigen.git
19
- mkdir eigen/build
20
- ( cd eigen/build
21
- cmake ..
22
- cmake --build . --parallel 4
23
- sudo cmake --install . ) )
18
+ git clone --depth 1 "https://gitlab.com/libeigen/eigen.git"
19
+ cmake -S "eigen" -B "eigen/build"
20
+ cmake --build "eigen/build" --parallel 4
21
+ sudo cmake --install "eigen/build" )
24
22
( cd /tmp
25
- git clone --depth 1 https://github.com/fmtlib/fmt.git
26
- mkdir fmt/build
27
- ( cd fmt/build
28
- cmake ..
29
- cmake --build . --parallel 4
30
- sudo cmake --install . ) )
23
+ git clone --depth 1 "https://github.com/fmtlib/fmt.git"
24
+ cmake -S "fmt" -B "fmt/build"
25
+ cmake --build "fmt/build" --parallel 4
26
+ sudo cmake --install "fmt/build" )
31
27
( cd /tmp
32
- git clone https://github.com/danmar/cppcheck.git
33
- mkdir cppcheck/build
34
- ( cd cppcheck/build
35
- cmake ..
36
- cmake --build . --parallel 4
37
- sudo cmake --install . ) )
28
+ git clone --depth 1 "https://github.com/kokkos/mdspan.git"
29
+ cmake -S "mdspan" -B "mdspan/build"
30
+ cmake --build "mdspan/build" --parallel 4
31
+ sudo cmake --install "mdspan/build" )
38
32
( cd /tmp
39
- git clone --depth 1 https://github.com/kokkos/mdspan.git
40
- mkdir mdspan/build
41
- ( cd mdspan/build
42
- cmake ..
43
- cmake --build . --parallel 4
44
- sudo cmake --install . ) )
33
+ git clone --depth 1 "https://github.com/kokkos/stdBLAS.git"
34
+ cmake -S "stdBLAS" -B "stdBLAS/build"
35
+ cmake --build "stdBLAS/build" --parallel 4
36
+ sudo cmake --install "stdBLAS/build" )
45
37
( cd /tmp
46
- git clone --depth 1 https://github.com/kokkos/stdBLAS.git
47
- mkdir stdBLAS/build
48
- ( cd stdBLAS/build
49
- cmake ..
50
- cmake --build . --parallel 4
51
- sudo cmake --install . ) )
52
- ( cd /tmp
53
- git clone --depth 1 https://github.com/BobSteagall/wg21.git
54
- mkdir wg21/build
55
- ( cd wg21/build
56
- cmake ..
57
- sudo cmake --install . ) )
38
+ git clone --depth 1 "https://github.com/danmar/cppcheck.git"
39
+ cmake -S "cppcheck" -B "cppcheck/build"
40
+ cmake --build "cppcheck/build" --parallel 4
41
+ sudo cmake --install "cppcheck/build" )
58
42
- name : Verify
59
43
# unusedStructMember https://trac.cppcheck.net/ticket/10699
60
44
run : |
0 commit comments