diff --git a/.ci/linux/build.sh b/.ci/linux/build.sh index f620cd1ecb..f804474814 100755 --- a/.ci/linux/build.sh +++ b/.ci/linux/build.sh @@ -52,7 +52,6 @@ cmake .. -G Ninja \ -DYUZU_USE_BUNDLED_VCPKG=OFF \ -DYUZU_USE_BUNDLED_QT=OFF \ -DUSE_SYSTEM_QT=ON \ - -DYUZU_LOG_BY_LINE=ON \ -DYUZU_USE_BUNDLED_FFMPEG=OFF \ -DYUZU_USE_BUNDLED_SDL2=OFF \ -DYUZU_USE_EXTERNAL_SDL2=ON \ diff --git a/.ci/linux/package.sh b/.ci/linux/package.sh index 2e5e3521e4..8d0cd14894 100755 --- a/.ci/linux/package.sh +++ b/.ci/linux/package.sh @@ -19,19 +19,10 @@ if [ "$ARCH" = 'x86_64' ]; then fi fi -#if [ "$DEVEL" = 'true' ]; then -# YUZU_TAG="$(git rev-parse --short HEAD)" -# echo "Making nightly \"$YUZU_TAG\" build" -# VERSION="$YUZU_TAG" -#else -# YUZU_TAG=$(git describe --tags) -# echo "Making stable \"$YUZU_TAG\" build" -# git checkout "$YUZU_TAG" -# VERSION="$(echo "$YUZU_TAG" | awk -F'-' '{print $1}')" -#fi - -# TODO: use real tags -VERSION="0.0.0" +EDEN_TAG=$(git describe --tags --abbrev=0) +echo "Making stable \"$EDEN_TAG\" build" +git checkout "$EDEN_TAG" +VERSION="$(echo "$EDEN_TAG")" # NOW MAKE APPIMAGE mkdir -p ./AppDir