File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ jobs:
113113 run : |
114114 vcpkg_installed/${{ matrix.triplet }}/tools/python3/${{ matrix.python }} -m ensurepip --upgrade
115115 vcpkg_installed/${{ matrix.triplet }}/tools/python3/${{ matrix.python }} -m pip install -r python/dev_requirements.txt
116+ vcpkg_installed/${{ matrix.triplet }}/tools/python3/${{ matrix.python }} -c "import pyparsing"
117+ ls -R vcpkg_installed/${{ matrix.triplet }}/lib/*/site-packages/
116118
117119 - name : Set Swap Space (Linux)
118120 if : runner.os == 'Linux'
@@ -155,9 +157,7 @@ jobs:
155157 CMAKE_CXX_COMPILER_LAUNCHER : sccache
156158
157159 - name : cmake build
158- shell : bash
159- run : |
160- cmake --build build --config ${{ matrix.build_type }}
160+ run : cmake --build build --verbose
161161
162162 - name : Run Python tests
163163 shell : bash
Original file line number Diff line number Diff line change 66 **/
77
88#include " PseudorangeFactor.h"
9-
9+ #ifdef __GNUC__
10+ #pragma GCC diagnostic ignored "-Warray-bounds"
11+ #endif
1012namespace {
1113
1214// / Speed of light in a vacuum (m/s):
Original file line number Diff line number Diff line change 88# pylint: disable=import-error
99
1010import argparse
11-
11+ import site
12+ import sys
13+ print (site .getsitepackages ())
14+ print (sys .path )
1215from gtwrap .pybind_wrapper import PybindWrapper
1316
1417
You can’t perform that action at this time.
0 commit comments