remote ubuntu 18.04 from workflows

This commit is contained in:
Patrick Brosi 2023-04-03 21:09:52 +02:00
parent 43904f2346
commit c0c2da57e7

View file

@ -2,25 +2,6 @@ name: Build
'on': 'on':
- push - push
jobs: 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: ubuntu-20-04-build-gcc:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
@ -51,25 +32,6 @@ jobs:
run: cd build && make run: cd build && make
- name: tests - name: tests
run: cd build && ctest --output-on-failure 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: ubuntu-20-04-build-clang:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps: