Try using github actions
Let's see how badly this goes
This commit is contained in:
parent
a35a2e877e
commit
6531aaa7bc
20
.github/workflows/ccpp.yml
vendored
Normal file
20
.github/workflows/ccpp.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: Smoke test
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: configure
|
||||||
|
run: |
|
||||||
|
mkdir build && cd build && cmake ..
|
||||||
|
- name: build
|
||||||
|
run: |
|
||||||
|
make -j4
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
ctest -V
|
Loading…
Reference in New Issue
Block a user