blob: f328d39a812cbd8fc314019906436d0a1d15f775 [file] [log] [blame]
Davide Pesavento30ed6282021-07-25 20:05:06 -04001name: CI
2on:
3 push:
Davide Pesavento01cea502021-07-31 19:25:42 -04004 paths-ignore:
5 - 'docs/**'
6 - '*.md'
7 - '.mailmap'
Davide Pesavento30ed6282021-07-25 20:05:06 -04008 workflow_dispatch:
9
Davide Pesavento01cea502021-07-31 19:25:42 -040010permissions:
11 contents: read
12
Davide Pesavento30ed6282021-07-25 20:05:06 -040013jobs:
14 linux:
15 name: ${{ matrix.compiler }} on ${{ matrix.os }}
Davide Pesaventoa821f592022-08-07 22:14:02 -040016 runs-on: ${{ matrix.os }}
Davide Pesavento30ed6282021-07-25 20:05:06 -040017 strategy:
18 fail-fast: false
19 matrix:
Davide Pesavento30ed6282021-07-25 20:05:06 -040020 os: [ubuntu-20.04]
Davide Pesaventoa821f592022-08-07 22:14:02 -040021 compiler: [g++-7, g++-8, g++-9, g++-10,
22 clang++-7, clang++-8, clang++-9, clang++-10, clang++-11, clang++-12]
Davide Pesavento30ed6282021-07-25 20:05:06 -040023 include:
Davide Pesaventoa821f592022-08-07 22:14:02 -040024 - os: ubuntu-22.04
25 compiler: g++-11
26 - os: ubuntu-22.04
27 compiler: g++-12
28 - os: ubuntu-22.04
29 compiler: clang++-13
30 - os: ubuntu-22.04
31 compiler: clang++-14
Davide Pesavento30ed6282021-07-25 20:05:06 -040032 env:
33 CXX: ${{ matrix.compiler }}
Davide Pesavento30ed6282021-07-25 20:05:06 -040034 steps:
35 - name: Install C++ compiler
36 run: |
37 sudo apt-get -qy install ${CXX/clang++/clang}
38 ${CXX} --version
39 - name: Checkout
Davide Pesavento541a8222022-03-01 15:08:42 -050040 uses: actions/checkout@v3
Davide Pesavento30ed6282021-07-25 20:05:06 -040041 - name: Build and test
42 run: ./.jenkins
43
44 macos:
45 name: Xcode ${{ matrix.xcode }} on ${{ matrix.os }}
Davide Pesaventoa821f592022-08-07 22:14:02 -040046 runs-on: ${{ matrix.os }}
Davide Pesavento30ed6282021-07-25 20:05:06 -040047 strategy:
48 fail-fast: false
49 matrix:
Davide Pesaventoa821f592022-08-07 22:14:02 -040050 os: [macos-11]
51 xcode: ['12.4', '12.5', '13.2']
Davide Pesavento83f8d162021-09-26 21:58:36 -040052 include:
Davide Pesaventoa821f592022-08-07 22:14:02 -040053 - os: macos-12
54 xcode: '13.4'
Davide Pesavento83faec72022-11-14 19:44:41 -050055 - os: macos-12
Davide Pesavento81de5d92022-12-30 01:08:05 -050056 xcode: '14.2'
Davide Pesavento30ed6282021-07-25 20:05:06 -040057 steps:
58 - name: Set up Xcode
59 uses: maxim-lobanov/setup-xcode@v1
60 with:
61 xcode-version: ${{ matrix.xcode }}
62 - name: Checkout
Davide Pesavento541a8222022-03-01 15:08:42 -050063 uses: actions/checkout@v3
Davide Pesavento30ed6282021-07-25 20:05:06 -040064 - name: Build and test
65 run: ./.jenkins