Skip to content

CI: install oldest supported compilers manually #622

CI: install oldest supported compilers manually

CI: install oldest supported compilers manually #622

Workflow file for this run

name: "Linux"
on:
push:
branches: [ master ]
pull_request:
# branches: [ master ]
jobs:
Latest:
runs-on: ubuntu-24.04
strategy:
matrix:
cxx: ['g++-14', 'clang++-18']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
CXX: ${{matrix.cxx}}
steps:
- name: list compilers
run: dpkg --list | grep compiler
- name: Get pushed code
uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build
run: cmake --build _build --parallel
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: ctest --test-dir _build
Oldest:
runs-on: ubuntu-20.04
strategy:
matrix:
cxx: ['g++-7', 'clang++-7']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
CXX: ${{matrix.cxx}}
steps:
- name: install ${{matrix.cxx}}
run: |
sudo add-apt-repository --yes --update ppa:ubuntu-toolchain-r/test
sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends ${{matrix.cxx}}
- name: list compilers
run: dpkg --list | grep compiler
- name: Get pushed code
uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build
run: cmake --build _build --parallel
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: ctest --test-dir _build
Alpine:
runs-on: ubuntu-latest
strategy:
matrix:
platform: ['armhf']
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
defaults:
run:
shell: alpine.sh {0}
steps:
- name: Get pushed code
uses: actions/checkout@v4
- uses: jirutka/setup-alpine@v1
with:
branch: edge
arch: ${{matrix.platform}}
packages: >
build-base cmake
- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build
run: cmake --build _build --parallel
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: ctest --test-dir _build