config: add acp_6_3 toml file to support acp_6_3 build #2
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
--- | |
# Basic build test | |
name: build | |
# yamllint disable-line rule:truthy | |
on: [pull_request, push, workflow_dispatch] | |
env: | |
CMAKE_C_FLAGS: "-Werror -Wall -Wmissing-prototypes\ | |
-Wimplicit-fallthrough=3 -Wpointer-arith" | |
jobs: | |
build-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: {fetch-depth: 50, submodules: recursive} | |
- name: install tools | |
run: sudo apt update && sudo apt install -y ninja-build | |
- name: build | |
run: cmake -B build/ -G Ninja | |
- run: cmake --build build/ |