Skip to content

Commit 84400e5

Browse files
committed
Merge branch 'PolynomialDivision-feature/add_workflow'
2 parents 7d32f94 + 757b407 commit 84400e5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build olsrd
2+
on:
3+
push:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
jobs:
7+
build:
8+
name: build
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
path: olsrd
14+
- name: Install dependencies
15+
run: sudo apt-get install build-essential dpkg-dev bison flex libgps-dev
16+
- name: Compile olsrd
17+
run: cd olsrd && make build_all

0 commit comments

Comments
 (0)