fdt-v2: minor code cleanups #103
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: Continuous integration | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: install qt | |
uses: jurplel/install-qt-action@v2.13.0 | |
- name: install opengl | |
run: sudo apt-get install mesa-common-dev libglu1-mesa-dev ninja-build -y | |
- name: cmake | |
run: CC="gcc-10" CXX="g++-10" cmake -GNinja . | |
- name: ninja | |
run: CC="gcc-10" CXX="g++-10" ninja |