@@ -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/
@@ -205,7 +205,6 @@ case "$AUTOBUILD_PLATFORM" in
205205
206206 cp $stage /release/bin/* .dll $stage /lib/release/
207207 cp $stage /release/lib/* .lib $stage /lib/release/
208- cp $stage /release/include/SDL3/* .h $stage /include/SDL3/
209208 popd
210209 ;;
211210 darwin* )
@@ -269,7 +268,6 @@ case "$AUTOBUILD_PLATFORM" in
269268 cmake --install . --config Release
270269 popd
271270
272- cp -a $PREFIX_RELEASE /include/SDL3/* .* $stage /include/SDL3
273271 cp -a $PREFIX_RELEASE /lib/* .so* $stage /lib/release
274272 cp -a $PREFIX_RELEASE /lib/lib* .a $stage /lib/release
275273 ;;
0 commit comments