Skip to content

Commit 6fbad12

Browse files
committed
Verify debug correctly
1 parent 1f19e54 commit 6fbad12

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/reusable-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,10 @@ jobs:
222222
run: |
223223
set -e
224224
EXPECTED_VERSION="clio-${INPUT_VERSION}"
225+
if [[ ${{ inputs.build_type }} == "Debug" ]]; then
226+
EXPECTED_VERSION="${EXPECTED_VERSION}+DEBUG"
227+
fi
228+
225229
actual_version=$(./build/clio_server --version | head -n 1)
226230
if [[ "${actual_version}" != "${EXPECTED_VERSION}" ]]; then
227231
echo "Expected version '${EXPECTED_VERSION}', but got '${actual_version}'"

0 commit comments

Comments
 (0)