diff --git a/.github/workflows/common_build.yml b/.github/workflows/common_build.yml index 2c3d8a9118..ccf30706d0 100644 --- a/.github/workflows/common_build.yml +++ b/.github/workflows/common_build.yml @@ -139,7 +139,7 @@ jobs: os: ubuntu-latest container_name: rockylinux:8 build: true - build_installer: false + build_installer: true qmake_extra: "CONFIG+=tests CONFIG+=noPch CONFIG+=ccache CONFIG+=sanitizer CONFIG+=sanitize-undefined CONFIG+=sanitize_address" gcc_version: 13 trik_qt_version: 5.15 @@ -192,7 +192,7 @@ jobs: uses: ./.github/workflows/installer.yml with: os: ubuntu-latest - container_name: registry.astralinux.ru/library/astra/ubi18:latest + container_name: registry.astralinux.ru/library/astra/ubi18-python311:1.8.1 artifact_name: linux-installer install-archlinux-installer: diff --git a/.github/workflows/setup_environment.yml b/.github/workflows/setup_environment.yml index 4c48080362..adb6faffcf 100644 --- a/.github/workflows/setup_environment.yml +++ b/.github/workflows/setup_environment.yml @@ -183,8 +183,8 @@ jobs: - name: Evaluate artifact name run: | set -x - echo "ARTIFACT_INSTALLER_NAME=$(echo "$RUNNER_OS" | awk '{print tolower($0)}')-installer" >> $GITHUB_ENV - env + ldd "$GITHUB_WORKSPACE/bin/trik-studio" | grep -q libasan && SUFFIX="-asan" || SUFFIX= + echo "ARTIFACT_INSTALLER_NAME=$(echo "$RUNNER_OS" | awk '{print tolower($0)}')-installer${SUFFIX}" >> $GITHUB_ENV - name: Upload installer artifact uses: actions/upload-artifact@v4