Skip to content

Commit

Permalink
Merge pull request #16 from microsoft/clang_11
Browse files Browse the repository at this point in the history
  • Loading branch information
jumaffre authored Aug 18, 2023
2 parents 2f3853d + ed42b46 commit 60415ba
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,28 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-18.04]
os: [ubuntu-latest, ubuntu-20.04]
build_type: [Debug, Release]
compiler: [g++, clang++, clang++-8]
compiler: [g++, clang++, clang++-11, clang++-15]
include:
- os: windows-latest
build_type: Debug
compiler: msvc
- os: windows-latest
build_type: Release
compiler: msvc
exclude:
- os: ubuntu-20.04
compiler: clang++-15

steps:
- name: Install packages
run: sudo apt install libmbedtls-dev doctest-dev clang-8
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-18.04'
run: sudo apt install libmbedtls-dev doctest-dev clang-11
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-20.04'

- name: Install clang++-15
run: sudo apt install clang-15
if: matrix.os == 'ubuntu-latest'

- uses: actions/checkout@v2

Expand Down Expand Up @@ -60,4 +67,6 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build/${{ matrix.build_type }}
shell: bash
run: ctest -C ${{ matrix.build_type }}
run: ctest -VV -C ${{ matrix.build_type }}
env:
ASAN_OPTIONS: use_sigaltstack=false # To avoid SetAlternateSignalStack with clang-11
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -352,3 +352,4 @@ MigrationBackup/

doc/html
doc/xml
build/*

0 comments on commit 60415ba

Please sign in to comment.