Skip to content

Use only recent compilers on Linux #24

Use only recent compilers on Linux

Use only recent compilers on Linux #24

Workflow file for this run

name: Linux
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -e -l {0}
jobs:
build:
runs-on: ubuntu-20.04
name: ${{ matrix.sys.compiler }} ${{ matrix.sys.version }}
strategy:
fail-fast: false
matrix:
sys:
- {compiler: clang, version: '16'}
- {compiler: gcc, version: '13'}
steps:
- name: Install LLVM and Clang
if: matrix.sys.compiler == 'clang'

Check failure on line 27 in .github/workflows/linux.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/linux.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
uses: egor-tensin/setup-clang@v1
with:
version: ${{matrix.sys.version}}
platform: x64
- name: Install GCC
if: matrix.sys.compiler == 'gcc'
uses: egor-tensin/setup-gcc@v1
with:
version: ${{matrix.sys.version}}
platform: x64
- name: Checkout code
uses: actions/checkout@v3
- name: Set conda environment
uses: mamba-org/setup-micromamba@main
with:
environment-name: myenv
environment-file: environment-dev.yml
init-shell: bash
cache-downloads: true
- name: Configure using CMake
# env:
# CC: ${{ env.CC }}
# CXX: ${{ env.CXX }}
run: cmake -G Ninja -Bbuild -DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DBUILD_TESTS=ON
- name: Install
working-directory: build
run: cmake --install .
- name: Build
working-directory: build
run: cmake --build . --target test_sparrow_lib --parallel 8
- name: Run tests
working-directory: build
run: ./test/test_sparrow_lib