Skip to content

Commit bdab52f

Browse files
committed
#1: fix ci invalid variable
1 parent a52d5e1 commit bdab52f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ FOO_RUN_TESTS=ON
88
# Temporary: Turn off coverage reporting (requires lcov but not yet in DARMA/workflows setup requirements)
99
FOO_COVERAGE_ENABLED=OFF
1010
FOO_COVERAGE_REPORT=/opt/foo/output/cov
11-
FOO_WERROR_ENABLED=0
11+
FOO_WERROR_ENABLED=0
12+
13+
# TODO: in CI this should be configurable per test environment

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
fi
138138
139139
if [ $FOO_TEST_REPORT != "" ]; then
140-
echo "FOO_TEST_REPORT=${FOO_TEST_REPORT}" >> "$GITHUB_OUTPUT"
140+
echo "JUNIT_REPORT_PATH=${FOO_TEST_REPORT}" >> "$GITHUB_OUTPUT"
141141
else
142142
143143
# - name: Build and test

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ endforeach()
6060
add_library(${FOO_LIBRARY} STATIC ${HEADER_FILES} ${SOURCE_FILES})
6161
add_library(${FOO_LIBRARY_NS} ALIAS ${FOO_LIBRARY})
6262

63-
set_target_properties(${FOO_LIBRARY} PROPERTIES LINKER_LANGUAGE C)
63+
# set_target_properties(${FOO_LIBRARY} PROPERTIES LINKER_LANGUAGE C)
6464

6565
include(turn_on_warnings)
6666
turn_on_warnings(${FOO_LIBRARY})

0 commit comments

Comments
 (0)