From 2cd8fce66a81fc62c86bf77194e73c6e711281a4 Mon Sep 17 00:00:00 2001 From: PartialVolume Date: Sat, 30 Nov 2019 17:47:25 +0000 Subject: [PATCH] Create ci_ubuntu-16.04 Add workflow for ubuntu 16.04 test --- .github/workflows/ci_ubuntu-16.04 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci_ubuntu-16.04 diff --git a/.github/workflows/ci_ubuntu-16.04 b/.github/workflows/ci_ubuntu-16.04 new file mode 100644 index 0000000..614bfeb --- /dev/null +++ b/.github/workflows/ci_ubuntu-16.04 @@ -0,0 +1,19 @@ +name: CI_on_ubuntu-16.04 + +on: [push] + +jobs: + build: + + runs-on: ubuntu-16.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