-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (58 loc) · 1.73 KB
/
macos_gcc.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: macOS GCC
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
include:
- gcc_ver: '14'
build_type: 'Release'
flags: '-std=c++23 -msse2'
path_prefix: '/usr/local'
macos_ver: '13'
# macOS-14-arm64
- gcc_ver: '11'
build_type: 'Release'
flags: '-std=c++23'
path_prefix: '/opt/homebrew'
macos_ver: '14'
- gcc_ver: '12'
build_type: 'Release'
flags: '-std=c++23'
path_prefix: '/opt/homebrew'
macos_ver: '14'
- gcc_ver: '13'
build_type: 'Release'
flags: '-std=c++23'
path_prefix: '/opt/homebrew'
macos_ver: '14'
- gcc_ver: '14'
build_type: 'Release'
flags: '-std=c++23'
path_prefix: '/opt/homebrew'
macos_ver: '14'
- gcc_ver: '14'
build_type: 'Release'
flags: '-std=c++23 -fno-rtti -DMOMO_USE_SAFE_MAP_BRACKETS -DMOMO_USE_UNORDERED_HINT_ITERATORS -DMOMO_DISABLE_TYPE_INFO'
path_prefix: '/opt/homebrew'
macos_ver: '14'
runs-on: macos-${{ matrix.macos_ver }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ninja
run: brew install ninja
- name: Install GCC
run: brew install gcc@${{ matrix.gcc_ver }}
- name: Build
env:
CXX: ${{ matrix.path_prefix }}/opt/gcc@${{ matrix.gcc_ver }}/bin/g++-${{ matrix.gcc_ver }}
CXXFLAGS: ${{ matrix.flags }}
run: |
cd test
mkdir build
cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build . -v
- name: Test
run: test/build/momo_test