From ce200aa4d5c9d9d479df3359523343130da0bb23 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 7 Apr 2020 10:36:19 -0400 Subject: [PATCH] add linux release build --- .github/workflows/main.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2832ca8e2e..8108f9b9c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,6 +3,34 @@ name: github-CI on: [push, pull_request] jobs: + linux-release-serial: + # simple serial release build using g++ + + name: linux release serial + runs-on: [ubuntu-18.04] + + steps: + - uses: actions/checkout@v1 + - name: setup + run: | + ./contrib/utilities/download_clang_format + - name: info + run: | + g++ -v + cmake --version + - name: configure + run: | + cmake -D CMAKE_BUILD_TYPE=Release -D DEAL_II_CXX_FLAGS='-Werror' . + - name: archive + uses: actions/upload-artifact@v1 + with: + name: linux-serial-detailed.log + path: detailed.log + - name: build + run: | + ./contrib/utilities/check_indentation.sh + make -j 2 + osx-serial: # simple serial build using apple clang -- 2.39.5