Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches:
- master
- develop
- feature/*
pull_request:
branches:
- master
- develop

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Configure machine
run: |
sudo apt-get update -qq
sudo apt-get install ninja-build cmake g++-10 clang

- name: Configure build
run: |
mkdir build.tmp && cd build.tmp
cmake .. -G ninja-build -DSKIP_BUILD_TEST=ON

- name: Perform build
run: ninja