nice-traffic-28870
03/10/2025, 12:50 AM[test]
extra_env_vars = [
# must turn off array-bounds warning in gcc because we are stuck on awscrt==0.13.5 and that version of awscrt
# provokes a warning from gcc which is treated as an error. we are stuck with that version of awscrt because it is
# required by atlasground-freedom-api==2.1.16, which is a closed-source package we have from Atlas.
# passing these flags does not work in pants 2.15 (the warning is still treated as error) which is why when we
# upgraded to debian bookworm we also had to upgrade pants to latest at the time, 2.24.0
'CFLAGS=-Wno-error=array-bounds',
'CXXFLAGS=-Wno-error=array-bounds',
'CMAKE_C_FLAGS=-Wno-error=array-bounds',
'CMAKE_CXX_FLAGS=-Wno-error=array-bounds',
# this is so tests that use Orekit can find java
'LD_LIBRARY_PATH=/usr/lib/jvm/temurin-8-jdk-amd64/jre/lib/amd64:/usr/lib/jvm/temurin-8-jdk-amd64/jre/lib/amd64/server/'
]
I'll put more detail under this comment so as not to spam the channel here with too many logsnice-traffic-28870
03/10/2025, 12:51 AM./pants --print-stacktrace -ldebug test :: --tag=-integrationnice-traffic-28870
03/10/2025, 1:01 AMnice-traffic-28870
03/10/2025, 1:06 AMextra_env_vars are called out. It's not clear to me if they would be visible to CMake there but it seems the are not.
/usr/bin/cmake -DCMAKE_PREFIX_PATH=/root/.cache/pants/named_caches/pex_root/pip/1/24.2/pip_cache/.tmp/pip-req-build-7523qoju/build/deps/install -DCMAKE_INSTALL_PREFIX=/root/.cache/pants/named_caches/pex_root/pip/1/24.2/pip_cache/.tmp/pip-req-build-7523qoju/build/deps/install -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTING=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_LIBSSL=OFF -DDISABLE_PERL=ON -DDISABLE_GO=ON /root/.cache/pants/named_caches/pex_root/pip/1/24.2/pip_cache/.tmp/pip-req-build-7523qoju/crt/aws-lcnice-traffic-28870
03/10/2025, 1:09 AMgorgeous-winter-99296
03/10/2025, 7:51 PMnice-traffic-28870
03/10/2025, 7:52 PMgorgeous-winter-99296
03/10/2025, 7:56 PMgorgeous-winter-99296
03/10/2025, 7:57 PMnice-traffic-28870
03/10/2025, 7:58 PMnice-traffic-28870
03/10/2025, 7:58 PMnice-traffic-28870
03/10/2025, 8:00 PMgorgeous-winter-99296
03/10/2025, 8:08 PMnice-traffic-28870
03/10/2025, 8:09 PMgorgeous-winter-99296
03/10/2025, 8:12 PMnice-traffic-28870
03/10/2025, 11:29 PM[subprocess-environment]
env_vars = [
# must turn off array-bounds warning in gcc because we are stuck on awscrt==0.13.5 and that version of awscrt
# provokes a warning from gcc which is treated as an error. we are stuck with that version of awscrt because it is
# required by atlasground-freedom-api==2.1.16, which is a closed-source package we have from Atlas.
# passing these flags does not work in pants 2.15 (the warning is still treated as error) which is why when we
# upgraded to debian bookworm we also had to upgrade pants to latest at the time, 2.24.0
'CFLAGS=-Wno-error=array-bounds',
'CXXFLAGS=-Wno-error=array-bounds',
'CMAKE_C_FLAGS=-Wno-error=array-bounds',
'CMAKE_CXX_FLAGS=-Wno-error=array-bounds',
]