From c0c2da57e744d3ad969e1bbe094a1bee5946e91f Mon Sep 17 00:00:00 2001 From: Patrick Brosi Date: Mon, 3 Apr 2023 21:09:52 +0200 Subject: [PATCH] remote ubuntu 18.04 from workflows --- .github/workflows/build.yml | 38 ------------------------------------- 1 file changed, 38 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1d3ab5..620fb00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,25 +2,6 @@ name: Build 'on': - push jobs: - ubuntu-18-04-build-gcc-5: - runs-on: ubuntu-18.04 - steps: - - name: Checkout repository code - uses: actions/checkout@v2 - - name: Checkout submodules - run: git submodule update --init --recursive - - name: install dependencies - run: sudo apt install -y cmake g++-5 gcc-5 - - name: cmake - run: mkdir build && cd build && cmake .. - shell: bash - env: - CC: gcc-5 - CXX: g++-5 - - name: make - run: cd build && make - - name: tests - run: cd build && ctest --output-on-failure ubuntu-20-04-build-gcc: runs-on: ubuntu-20.04 steps: @@ -51,25 +32,6 @@ jobs: run: cd build && make - name: tests run: cd build && ctest --output-on-failure - ubuntu-18-04-build-clang-3_9: - runs-on: ubuntu-18.04 - steps: - - name: Checkout repository code - uses: actions/checkout@v2 - - name: Checkout submodules - run: git submodule update --init --recursive - - name: install dependencies - run: sudo apt install -y cmake clang-3.9 - - name: cmake - run: mkdir build && cd build && cmake .. - shell: bash - env: - CC: clang-3.9 - CXX: clang++-3.9 - - name: make - run: cd build && make - - name: tests - run: cd build && ctest --output-on-failure ubuntu-20-04-build-clang: runs-on: ubuntu-20.04 steps: