File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 32
32
- name : Build It
33
33
# Build your program with the given configuration
34
34
run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
35
-
35
+
36
+ build-on-arm-too :
37
+ runs-on : ubuntu-latest
38
+ steps :
39
+ - uses : actions/checkout@v2
40
+ - uses : uraimo/run-on-arch-action@v2
41
+ with :
42
+ arch : aarch64
43
+ distro : ubuntu20.04
44
+ run : |
45
+ apt-get update && apt-get install -y cmake g++ clang-tidy libcurl4-openssl-dev
46
+ cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_CLANG_TIDY=clang-tidy
47
+ cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
48
+
49
+
50
+
36
51
format :
37
52
runs-on : ubuntu-latest
38
53
41
56
42
57
- name : Check Formatting
43
58
run : ./ci/codebuild/format-check.sh
44
-
59
+
60
+
You can’t perform that action at this time.
0 commit comments