From cef930dd0678e163f644557327689bf4cd6aa480 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sun, 7 Feb 2021 12:09:35 -0800 Subject: [PATCH] test gcc 4.8/4.9 --- .github/workflows/build-and-test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index cc4a1e8..61512db 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -50,6 +50,34 @@ jobs: - name: Collect and show test results run: python cue.py test-results + build-linux-old: + name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }} + runs-on: ${{ matrix.os }} + env: + CMP: ${{ matrix.cmp }} + BCFG: ${{ matrix.configuration }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-16.04] + cmp: ["gcc-4.8", "gcc-4.9"] + configuration: [default, static] + steps: + - uses: actions/checkout@v2 + - name: "apt-get install ${{ matrix.cmp }}" + run: | + sudo apt-get -y install software-properties-common + sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test + sudo apt-get -y install ${{ matrix.cmp }} + - name: Prepare and compile dependencies + run: python cue.py prepare + - name: Build main module (example app) + run: python cue.py build + - name: Run main module tests + run: python cue.py test + - name: Collect and show test results + run: python cue.py test-results + build-macos: name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }} runs-on: ${{ matrix.os }}