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:
parent
54b8192d30
commit
2985b46926
|
@ -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
|
Loading…
Reference in New Issue