There was an error while loading. Please reload this page.
1 parent 7b9d56a commit c3d92f7Copy full SHA for c3d92f7
1 file changed
.github/workflows/workflow.yml
@@ -32,7 +32,22 @@ jobs:
32
- name: Build It
33
# Build your program with the given configuration
34
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
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
51
format:
52
runs-on: ubuntu-latest
53
@@ -41,4 +56,5 @@ jobs:
56
57
- name: Check Formatting
58
run: ./ci/codebuild/format-check.sh
59
60
0 commit comments