Skip to content

hotfix: Rel-v1.1.4

hotfix: Rel-v1.1.4 #14

name: ae2f-workflow
on:
push:
branches: [main]
jobs:
test-compiler-majours:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
c: [-DCMAKE_C_COMPILER=gcc, -DCMAKE_C_COMPILER=clang, \"\"]
conf: [Release, Debug]
include:
- os: ubuntu-latest
bash: bash
- os: windows-latest
bash: bash
- os: macos-latest
bash: bash
- c: -DCMAKE_C_COMPILER=gcc
cc: -DCMAKE_CXX_COMPILER=g++
- c: -DCMAKE_C_COMPILER=clang
cc: -DCMAKE_CXX_COMPILER=clang++
- c: \"\"
cc: \"\"
steps:
- uses: actions/checkout@v4
with:
ref: 'main'
fetch-depth: '1'
- name: Set reusable strings
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Test
run: ${{ matrix.bash }} ./test.sh ${{ matrix.c }} ${{ matrix.cc }} ${{ matrix.conf }}