Skip to content

Commit 6787f56

Browse files
committed
test
1 parent c5846f8 commit 6787f56

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/vcpkg.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ 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 }} -m pyparsing || 0
116117
117118
- name: Set Swap Space (Linux)
118119
if: runner.os == 'Linux'
@@ -155,9 +156,7 @@ jobs:
155156
CMAKE_CXX_COMPILER_LAUNCHER: sccache
156157

157158
- name: cmake build
158-
shell: bash
159-
run: |
160-
cmake --build build --config ${{ matrix.build_type }}
159+
run: cmake --build build
161160

162161
- name: Run Python tests
163162
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
# pylint: disable=import-error
99

1010
import argparse
11-
11+
import site
12+
print(site.PREFIXES)
1213
from gtwrap.pybind_wrapper import PybindWrapper
1314

1415

0 commit comments

Comments
 (0)