File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
12
- python-version : [3.6 ]
12
+ python-version : [3.8.10 ]
13
13
cxx : [clang++]
14
- std : [c++98, c++ 11, c++14] # TODO: c++17 is failing !
14
+ std : [c++11, c++14] # TODO: c++17 is failing !
15
15
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
- name : setup python
19
- uses : actions/setup-python@v2
19
+ uses : actions/setup-python@v5
20
20
with :
21
21
python-version : ${{ matrix.python-version }}
22
22
- name : setup prerequisites
@@ -28,16 +28,19 @@ jobs:
28
28
run : |
29
29
python --version
30
30
${{ matrix.cxx }} --version
31
+ brew info boost
31
32
faber -v
32
33
sed -e "s/\$PYTHON/python/g" .ci/faber > ~/.faber
33
34
faber \
35
+ --with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \
34
36
--builddir=build \
35
37
cxx.name=${{ matrix.cxx }} \
36
38
cxxflags=-std=${{ matrix.std }} \
37
39
-j`sysctl -n hw.ncpu`
38
40
- name : test
39
41
run : |
40
42
faber \
43
+ --with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \
41
44
--builddir=build\
42
45
cxx.name=${{ matrix.cxx }} \
43
46
cxxflags=-std=${{ matrix.std }} \
Original file line number Diff line number Diff line change 26
26
image : ${{ matrix.docker-img }}
27
27
28
28
steps :
29
- - uses : actions/checkout@v2
29
+ - uses : actions/checkout@v4
30
30
31
31
- name : build
32
32
run : |
Original file line number Diff line number Diff line change 11
11
python-version : [3.7]
12
12
13
13
steps :
14
- - uses : actions/checkout@v2
15
- - uses : actions/setup-python@v2
14
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-python@v5
16
16
with :
17
17
python-version : ${{ matrix.python-version }}
18
18
- uses : microsoft/setup-msbuild@v1.1
You can’t perform that action at this time.
0 commit comments