From e9edc8edb9a8dfb27808b5e6d08371a5515960be Mon Sep 17 00:00:00 2001 From: Doug Freed Date: Sat, 12 Dec 2020 03:33:09 -0500 Subject: [PATCH] Start CI configuration for Github Actions --- .github/workflows/ci.yml | 56 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 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 00000000..c4f37338 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,56 @@ +name: CI + +on: + push: + branches: + - main + paths-ignore: + - 'doc/oper-guide/**' + pull_request: + branches: + - main + paths-ignore: + - 'doc/oper-guide/**' + +jobs: + linux: + name: Linux + + runs-on: ubuntu-18.04 + + strategy: + fail-fast: false + matrix: + compiler: + - gcc-6 # Debian 9 (OFTC) + - gcc-7 + - gcc-8 + - clang-7 + - clang-8 + + env: + CC: ${{ matrix.compiler }} + + steps: + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends \ + ${CC} \ + automake \ + autoconf \ + libtool \ + libsqlite3-dev \ + libhyperscan-dev \ + # EOF + - uses: actions/checkout@v2 + - name: autogen.sh + run: bash autogen.sh + - name: configure + run: CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter" ./configure --enable-assert=hard --enable-warnings + - name: make + run: make -j2 + - name: make check + run: make check + - name: make install + run: make install