Warnings if unable to config interface (#39) #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux build | |
on: | |
pull_request: | |
branches: [master, v1.x] | |
paths: | |
- "*.h" | |
- "*.cpp" | |
- "CMakeLists.txt" | |
- "cmake/**" | |
- "examples/**.cpp" | |
- "examples/**CMakeLists.txt" | |
- "!**Makefile" # old build system is not tested in this workflow | |
- ".github/workflows/build_linux.yml" | |
push: | |
branches: [master, v1.x] | |
paths: | |
- "*.h" | |
- "*.cpp" | |
- "CMakeLists.txt" | |
- "cmake/**" | |
- "examples/**.cpp" | |
- "examples/**CMakeLists.txt" | |
- "!**Makefile" # old build system is not tested in this workflow | |
- ".github/workflows/build_linux.yml" | |
release: | |
types: [published, edited] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
using_cmake: | |
uses: nRF24/.github/.github/workflows/build_linux_cmake.yaml@main | |
with: | |
compiler: ${{ matrix.toolchain.compiler }} | |
usr-dir: ${{ matrix.toolchain.usr_dir }} | |
examples-path: examples | |
deploy-release: ${{ github.event_name == 'release' && (matrix.toolchain.compiler == 'armhf' || matrix.toolchain.compiler == 'arm64') }} | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: | |
- compiler: "armhf" | |
usr_dir: "arm-linux-gnueabihf" | |
- compiler: "arm64" | |
usr_dir: "aarch64-linux-gnu" | |
# - compiler: "x86_64" | |
# usr_dir: "x86_64-linux-gnux32" | |
# - compiler: "i686" | |
# usr_dir: "i686-linux-gnu" | |
- compiler: "default" # github runner is hosted on a "amd64" | |
usr_dir: "local" # use default compiler to test build all examples (including the ncurses ones) |