Skip to content

Commit 55c7a98

Browse files
committed
#1: test env update in CI
1 parent 444c3b6 commit 55c7a98

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Environment variables to build and test the foo project
12
CMAKE_CXX_STANDARD=17
23
CMAKE_BUILD_TYPE=Release
34

@@ -6,4 +7,5 @@ FOO_OUTPUT_DIR=/opt/foo/output
67
FOO_RUN_TESTS=ON
78
# Temporary: Turn off coverage reporting (requires lcov but not yet in DARMA/workflows setup requirements)
89
FOO_COVERAGE_ENABLED=OFF
9-
FOO_COVERAGE_REPORT=/opt/foo/output/cov
10+
FOO_COVERAGE_REPORT=/opt/foo/output/cov
11+
FOO_WERROR_ENABLED=0

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ jobs:
127127
-v /opt/foo/build:/opt/foo/build \
128128
-v /opt/foo/output:/opt/foo/output \
129129
-e CI="1" \
130+
-e https_proxy="" \
131+
-e http_proxy="" \
130132
${{ matrix.runner.image }} \
131133
bash -c "$CMD"
132134
exit $(docker container inspect --format '{{.State.ExitCode}}' test-container)

0 commit comments

Comments
 (0)