From 06aecbb8f85a78e0b066f395e1ad56c679392e19 Mon Sep 17 00:00:00 2001 From: louib Date: Tue, 19 Nov 2019 17:54:12 -0500 Subject: [PATCH] Adding GitHub CI build process. --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3a51a8c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI on Ubuntu 18.04 + +on: [push] + +jobs: + build: + + runs-on: ubuntu-18.04 + + steps: + - uses: actions/checkout@v1 + - name: installing system dependencies + run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev dmidecode + - name: creating autoconf files + run: ./init.sh + - name: configure + run: ./configure CFLAGS='-O0 -g -Wall -Wextra' + - name: make + run: make