diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da5a12f8..644dcac2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,3 +201,27 @@ jobs: working-directory: ${{runner.workspace}}/build shell: bash run: LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$(pwd)/backend" PATH=$PATH:"$(pwd)/frontend" ctest -V -C $BUILD_TYPE + + build-ubuntu-arm: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: arm-none-eabi-gcc + uses: ryanwinter/arm-none-eabi-gcc@master + with: + release: '10-2021.10' + + - name: Create Build Environment + run: cmake -E make_directory ${{runner.workspace}}/build + + - name: Configure CMake + working-directory: ${{runner.workspace}}/build + shell: bash + run: cmake $GITHUB_WORKSPACE -DCMAKE_TOOLCHAIN_FILE="cmake/arm-gcc-cortex-m4.cmake" -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DZINT_USE_PNG=OFF -DZINT_USE_QT=OFF + + - name: Build + working-directory: ${{runner.workspace}}/build + shell: bash + run: cmake --build . -j8 --config $BUILD_TYPE