File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 14
14
image : vsaglib/vsag:ubuntu
15
15
steps :
16
16
- uses : actions/checkout@v4
17
- - name : Set up Python
18
- uses : actions/setup-python@v3
19
- with :
20
- python-version : ' 3.10'
17
+ - name : Link Python3.10 as Python
18
+ run : |
19
+ ln -s /usr/bin/python3 /usr/bin/python
21
20
- name : Install
22
21
run : |
23
22
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -10,10 +10,12 @@ jobs:
10
10
clang-tidy-check :
11
11
name : Lint
12
12
runs-on : ubuntu-latest
13
+ container :
14
+ image : vsaglib/vsag:ubuntu
13
15
steps :
14
16
- name : Checkout code
15
17
uses : actions/checkout@v4
16
18
- name : Install clang-tidy
17
- run : sudo apt install clang-tidy-15 -y
19
+ run : sudo apt install clang-tidy-15 -y && sudo ln -s /usr/bin/clang-tidy-15 /usr/bin/clang-tidy
18
20
- name : Run lint
19
- run : make lint
21
+ run : make debug && make lint
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ if (ENABLE_TOOLS AND ENABLE_CXX11_ABI)
195
195
endif ()
196
196
197
197
set (CMAKE_CXX_STANDARD 17)
198
+ set (CMAKE_CXX_STANDARD_REQUIRED ON )
198
199
199
200
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
200
201
if (CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 17 OR CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 17)
You can’t perform that action at this time.
0 commit comments