Skip to content

Commit fd2322c

Browse files
author
AiraYumi
committed
rollback 2.30.54
1 parent 3e1bdf0 commit fd2322c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

build-cmd.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ case "$AUTOBUILD_PLATFORM" in
6363
cmake --install . --config Debug
6464

6565
# conditionally run unit tests
66-
#if [ "${DISABLE_UNIT_TESTS:-0}" = "0" ]; then
67-
# ctest -C Debug
68-
#fi
66+
if [ "${DISABLE_UNIT_TESTS:-0}" = "0" ]; then
67+
ctest -C Debug
68+
fi
6969

7070
cp $stage/debug/bin/*.dll $stage/lib/debug/
7171
cp $stage/debug/lib/*.lib $stage/lib/debug/
@@ -81,9 +81,9 @@ case "$AUTOBUILD_PLATFORM" in
8181
cmake --install . --config Release
8282

8383
# conditionally run unit tests
84-
#if [ "${DISABLE_UNIT_TESTS:-0}" = "0" ]; then
85-
# ctest -C Release
86-
#fi
84+
if [ "${DISABLE_UNIT_TESTS:-0}" = "0" ]; then
85+
ctest -C Release
86+
fi
8787

8888
cp $stage/release/bin/*.dll $stage/lib/release/
8989
cp $stage/release/lib/*.lib $stage/lib/release/
@@ -279,4 +279,4 @@ esac
279279
popd
280280

281281
mkdir -p "$stage/LICENSES"
282-
cp "$TOP/$SDL_SOURCE_DIR/LICENSE.txt" "$stage/LICENSES/SDL2.txt"
282+
cp "$TOP/$SDL_SOURCE_DIR/LICENSE.txt" "$stage/LICENSES/SDL2.txt"

0 commit comments

Comments
 (0)