CI: Pin AppImageTool version

If it breaks something, I kinda don't care. Not worth it for 2% of
users..
This commit is contained in:
Stenzek 2025-07-21 18:38:57 +10:00
parent cdd054702c
commit 51ce5351d7
No known key found for this signature in database
3 changed files with 3 additions and 4 deletions

View File

@ -12,8 +12,7 @@ if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
endif() endif()
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug|Devel|MinSizeRel|RelWithDebInfo|Release") if(NOT CMAKE_BUILD_TYPE MATCHES "Debug|Devel|MinSizeRel|RelWithDebInfo|Release")
message(STATUS "CMAKE_BUILD_TYPE not set, defaulting to Release.") message(FATAL_ERROR "CMAKE_BUILD_TYPE not set. Please set it first.")
set(CMAKE_BUILD_TYPE "Release")
endif() endif()
# Pull in modules. # Pull in modules.

View File

@ -81,7 +81,7 @@ if [ ! -f "$LINUXDEPLOY_PLUGIN_QT" ]; then
fi fi
if [ ! -f "$APPIMAGETOOL" ]; then if [ ! -f "$APPIMAGETOOL" ]; then
retry_command wget -O "$APPIMAGETOOL" https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage retry_command wget -O "$APPIMAGETOOL" https://github.com/stenzek/duckstation-ext-qt-minimal/releases/download/linux/appimagetool-x86_64.AppImage
chmod +x "$APPIMAGETOOL" chmod +x "$APPIMAGETOOL"
fi fi

View File

@ -227,7 +227,7 @@ APPIMAGERUNTIME=./runtime-${RUNTIMEARCH}
PATCHELF=patchelf PATCHELF=patchelf
if [ ! -f "$APPIMAGETOOL" ]; then if [ ! -f "$APPIMAGETOOL" ]; then
retry_command wget -O "$APPIMAGETOOL" https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage retry_command wget -O "$APPIMAGETOOL" https://github.com/stenzek/duckstation-ext-qt-minimal/releases/download/linux/appimagetool-x86_64.AppImage
chmod +x "$APPIMAGETOOL" chmod +x "$APPIMAGETOOL"
fi fi