8000 Upgrade CI platforms. · boostorg/python@3ea0cb8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3ea0cb8

Browse files
committed
Upgrade CI platforms.
1 parent 95e5301 commit 3ea0cb8

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/test-osx.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [3.6]
12+
python-version: [3.8.10]
1313
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 !
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: setup python
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: setup prerequisites
@@ -28,16 +28,19 @@ jobs:
2828
run: |
2929
python --version
3030
${{ matrix.cxx }} --version
31+
brew info boost
3132
faber -v
3233
sed -e "s/\$PYTHON/python/g" .ci/faber > ~/.faber
3334
faber \
35+
--with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \
3436
--builddir=build \
3537
cxx.name=${{ matrix.cxx }} \
3638
cxxflags=-std=${{ matrix.std }} \
3739
-j`sysctl -n hw.ncpu`
3840
- name: test
3941
run: |
4042
faber \
43+
--with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \
4144
--builddir=build\
4245
cxx.name=${{ matrix.cxx }} \
4346
cxxflags=-std=${{ matrix.std }} \

.github/workflows/test-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
image: ${{ matrix.docker-img }}
2727

2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
3030

3131
- name: build
3232
run: |

.github/workflows/test-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
python-version: [3.7]
1212

1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-python@v2
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- uses: microsoft/setup-msbuild@v1.1

0 commit comments

Comments
 (0)
0