Skip to content

Commit 15e5df5

Browse files
committed
test
1 parent c5846f8 commit 15e5df5

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/vcpkg.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

gtsam/navigation/PseudorangeFactor.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
**/
77

88
#include "PseudorangeFactor.h"
9-
9+
#ifdef __GNUC__
10+
#pragma GCC diagnostic ignored "-Warray-bounds"
11+
#endif
1012
namespace {
1113

1214
/// Speed of light in a vacuum (m/s):

wrap/scripts/pybind_wrap.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
# pylint: disable=import-error
99

1010
import argparse
11-
11+
import site
12+
import sys
13+
print(site.getsitepackages())
14+
print(sys.path)
1215
from gtwrap.pybind_wrapper import PybindWrapper
1316

1417

0 commit comments

Comments
 (0)