name: CMake on: push: pull_request: env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release jobs: build: name: ${{matrix.name}} strategy: matrix: include: - os: ubuntu-20.04 name: Linux cache-key: linux cmake-args: '-DPICO_SDK_PATH=$GITHUB_WORKSPACE/pico-sdk' apt-packages: clang-tidy gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib runs-on: ${{matrix.os}} env: PICO_SDK_PATH: $GITHUB_WORKSPACE/pico-sdk steps: - uses: actions/checkout@v2 # Check out the Pico SDK - name: Checkout Pico SDK uses: actions/checkout@v2 with: repository: raspberrypi/pico-sdk path: pico-sdk submodules: true # Linux deps - name: Install deps if: runner.os == 'Linux' run: | sudo apt update && sudo apt install ${{matrix.apt-packages}} - name: Create Build Environment run: cmake -E make_directory ${{runner.workspace}}/build - name: Configure CMake shell: bash working-directory: ${{runner.workspace}}/build run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE ${{matrix.cmake-args}} - name: Build working-directory: ${{runner.workspace}}/build shell: bash run: | cmake --build . --config $BUILD_TYPE -j 2