Skip to content

Commit 3fa093a

Browse files
committed
Setup github actions
1 parent 9b34922 commit 3fa093a

File tree

2 files changed

+20
-30
lines changed

2 files changed

+20
-30
lines changed

.github/workflows/build.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: uFSM Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build-ubuntu:
7+
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Install deps
12+
run: |
13+
sudo apt-get update
14+
sudo apt-get install autoconf-archive libjson-c-dev lcov libgtk-3-0 libgtk-3-dev libcairo2 libcairo2-dev uuid-dev
15+
- name: configure
16+
run: mkdir build && autoreconf -fi && cd build && ../configure --enable-code-coverage
17+
- name: build
18+
run: cd build && make -j $(nproc)
19+
- name: test
20+
run: cd build && make check

.travis.yml

-30
This file was deleted.

0 commit comments

Comments
 (0)