ci: add ubuntu-latest workflow

Add basic build on ubuntu-latest to have at least one ci build on Linux.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2022-10-16 14:18:13 +00:00
parent 54b8192d30
commit 2985b46926
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 26 additions and 0 deletions

26
.github/workflows/ubuntu-build.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Ubuntu Latest Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Dependencies
run: >-
bash installdeps
- name: Configure
run: >-
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: ninja -C build
- name: Install
run: sudo ninja -C build install