cfgen: disable senpai on host that use SanDisk SD7SN6S256G #125
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and test repo | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- cc: gcc | |
cxx: g++ | |
- cc: clang | |
cxx: clang++ | |
env: | |
CC: ${{ matrix.cc }} | |
CXX: ${{ matrix.cxx }} | |
steps: | |
- run: sudo apt-get update | |
- name: Install dependencies | |
run: > | |
sudo apt-get install | |
pkg-config | |
libsystemd-dev | |
libjsoncpp-dev | |
googletest | |
meson | |
g++ | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- run: meson build/ | |
- run: ninja -C build/ | |
- run: ninja -C build/ test |