-
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (44 loc) · 1.1 KB
/
ci_macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: macOS 13
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
concurrency:
group: macos-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
env:
TZ: Europe/Berlin
defaults:
run:
shell: bash -Eexuo pipefail {0}
jobs:
build:
name: ${{ matrix.name }}
runs-on: macos-13
timeout-minutes: 180
strategy:
fail-fast: false
matrix:
include:
- name: "clang17 (c++20)"
compiler: "clang-17"
build_type: Release
cpp: 20
steps:
- name: Checkout cwl-cpp-auto
uses: actions/checkout@v4
with:
path: repo
fetch-depth: 2
- name: Setup compiler
uses: seqan/actions/setup-compiler@main
with:
compiler: ${{ matrix.compiler }}
- name: Install dependencies
run: brew install yaml-cpp
- name: Build and Run tests
run: |
cd repo
make tests CXXFLAGS="-std=c++${{ matrix.cpp }} -isystem $(brew --prefix)/include -L$(brew --prefix)/lib"