From: Philipp Borgers Date: Thu, 18 Jun 2020 10:09:17 +0000 (+0200) Subject: Merge branch 'PolynomialDivision-feature/add_workflow' X-Git-Url: http://olsr.org/git/?p=olsrd.git;a=commitdiff_plain;h=84400e5cf56590cd2bd5bef2d224104d1bac4252;hp=7d32f94c2e1b1aba452e13dff2364a30a5cbe2eb Merge branch 'PolynomialDivision-feature/add_workflow' --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..56b98beb --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build olsrd +on: + push: + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + path: olsrd + - name: Install dependencies + run: sudo apt-get install build-essential dpkg-dev bison flex libgps-dev + - name: Compile olsrd + run: cd olsrd && make build_all \ No newline at end of file