Skip to content

Commit

Permalink
Added integration with GitHub pipelines.
Browse files Browse the repository at this point in the history
Closes #23.
  • Loading branch information
xvitaly committed Apr 22, 2020
1 parent 3a9d7b4 commit fd65bf9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Linux CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: install requirements
run: |
sudo apt-get update
sudo apt-get -y install g++ cmake make
- name: fetch submodules
run: git submodule update --init --recursive
- name: cmake build
run: |
mkdir build
cd build
cmake ..
cmake --build .

0 comments on commit fd65bf9

Please sign in to comment.