We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f19e54 commit 6fbad12Copy full SHA for 6fbad12
.github/workflows/reusable-build.yml
@@ -222,6 +222,10 @@ jobs:
222
run: |
223
set -e
224
EXPECTED_VERSION="clio-${INPUT_VERSION}"
225
+ if [[ ${{ inputs.build_type }} == "Debug" ]]; then
226
+ EXPECTED_VERSION="${EXPECTED_VERSION}+DEBUG"
227
+ fi
228
+
229
actual_version=$(./build/clio_server --version | head -n 1)
230
if [[ "${actual_version}" != "${EXPECTED_VERSION}" ]]; then
231
echo "Expected version '${EXPECTED_VERSION}', but got '${actual_version}'"
0 commit comments