From 338904376b17a40b4e5b82f0eedef312935897bc Mon Sep 17 00:00:00 2001 From: Alex2772 Date: Wed, 17 Sep 2025 02:28:59 +0300 Subject: [PATCH 1/5] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d88d719..c7efffc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ option(BUILD_SHARED_LIBS "Build shared libs" OFF) option(AUIB_FORCE_PRECOMPILED "AUI.Boot: force precompiled dependencies" OFF) option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" OFF) -set(AUI_VERSION v8.0.0-rc.10) +set(AUI_VERSION v8.0.0-rc.11) # Use AUI.Boot file( From d80c2a18b7f00716716d244361e202262033ddc5 Mon Sep 17 00:00:00 2001 From: Alex2772 Date: Wed, 17 Sep 2025 04:03:48 +0300 Subject: [PATCH 2/5] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7efffc..fe553f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ option(BUILD_SHARED_LIBS "Build shared libs" OFF) option(AUIB_FORCE_PRECOMPILED "AUI.Boot: force precompiled dependencies" OFF) option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" OFF) -set(AUI_VERSION v8.0.0-rc.11) +set(AUI_VERSION a683361) # Use AUI.Boot file( From 71f330cda29709f96ce10faa1789eed5ea84bd8e Mon Sep 17 00:00:00 2001 From: alex2772 Date: Wed, 17 Sep 2025 11:16:14 +0300 Subject: [PATCH 3/5] u --- .github/workflows/build.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fefc416..a6dd997 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,18 +70,18 @@ jobs: run: brew install ninja - name: Configure CMake - run: cmake -G "${{ matrix.os=='windows-latest' && 'Visual Studio 17 2022' || 'Ninja' }}" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RelWithDebInfo ${{matrix.additional_cmake_flags}} -DAUI_INSTALL_RUNTIME_DEPENDENCIES=TRUE + run: cmake -G "${{ matrix.os=='windows-latest' && 'Visual Studio 17 2022' || 'Ninja' }}" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug ${{matrix.additional_cmake_flags}} -DAUI_INSTALL_RUNTIME_DEPENDENCIES=TRUE - name: Build Project - run: cmake --build ${{github.workspace}}/build --config RelWithDebInfo + run: cmake --build ${{github.workspace}}/build --config Debug - name: Build Tests - run: cmake --build ${{github.workspace}}/build --config RelWithDebInfo --target Tests + run: cmake --build ${{github.workspace}}/build --config Debug --target Tests - name: Run Tests (Windows) if: runner.os == 'Windows' - working-directory: ${{github.workspace}}/build/bin/RelWithDebInfo/ - run: ${{github.workspace}}/build/bin/RelWithDebInfo/Tests.exe + working-directory: ${{github.workspace}}/build/bin/Debug/ + run: ${{github.workspace}}/build/bin/Debug/Tests.exe - name: Run Tests (Linux and macOS) if: runner.os == 'Linux' @@ -93,32 +93,32 @@ jobs: working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=INNOSETUP - cmake --build . --config RelWithDebInfo - cpack . -CRelWithDebInfo -B artifacts + cmake --build . --config Debug + cpack . -CDebug -B artifacts - name: Pack Windows Portable if: runner.os == 'Windows' working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_ZIP - cmake --build . --config RelWithDebInfo - cpack . -CRelWithDebInfo -B artifacts + cmake --build . --config Debug + cpack . -CDebug -B artifacts - name: Pack Linux Portable (ZIP) if: runner.os == 'Linux' working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_ZIP - cmake --build . --config RelWithDebInfo - cpack . -CRelWithDebInfo -B artifacts + cmake --build . --config Debug + cpack . -CDebug -B artifacts - name: Pack Linux Portable (tar.gz) if: runner.os == 'Linux' working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_TGZ - cmake --build . --config RelWithDebInfo - cpack . -CRelWithDebInfo -B artifacts + cmake --build . --config Debug + cpack . -CDebug -B artifacts - name: Upload uses: actions/upload-artifact@v4 From 6035a6e3c0650994f3a4a16858d6b7996150bf0c Mon Sep 17 00:00:00 2001 From: Alex2772 Date: Thu, 25 Sep 2025 19:37:11 +0300 Subject: [PATCH 4/5] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe553f2..7410d4e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ option(BUILD_SHARED_LIBS "Build shared libs" OFF) option(AUIB_FORCE_PRECOMPILED "AUI.Boot: force precompiled dependencies" OFF) option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" OFF) -set(AUI_VERSION a683361) +set(AUI_VERSION v8.0.0-rc.13) # Use AUI.Boot file( From 7d82e7dc8f4579bcbf640ee7a7514ba5133394b6 Mon Sep 17 00:00:00 2001 From: alex2772 Date: Thu, 25 Sep 2025 20:02:04 +0300 Subject: [PATCH 5/5] u --- .github/workflows/build.yml | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6dd997..328b753 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,6 +46,10 @@ jobs: ${{ runner.os }}-build- ${{ runner.os }}- + - name: Install Windows dependencies + if: runner.os == 'Windows' + run: choco install innosetup + - name: Install Linux dependencies if: runner.os == 'Linux' run: | @@ -70,18 +74,18 @@ jobs: run: brew install ninja - name: Configure CMake - run: cmake -G "${{ matrix.os=='windows-latest' && 'Visual Studio 17 2022' || 'Ninja' }}" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug ${{matrix.additional_cmake_flags}} -DAUI_INSTALL_RUNTIME_DEPENDENCIES=TRUE + run: cmake -G "${{ matrix.os=='windows-latest' && 'Visual Studio 17 2022' || 'Ninja' }}" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RelWithDebInfo ${{matrix.additional_cmake_flags}} -DAUI_INSTALL_RUNTIME_DEPENDENCIES=TRUE - name: Build Project - run: cmake --build ${{github.workspace}}/build --config Debug + run: cmake --build ${{github.workspace}}/build --config RelWithDebInfo - name: Build Tests - run: cmake --build ${{github.workspace}}/build --config Debug --target Tests + run: cmake --build ${{github.workspace}}/build --config RelWithDebInfo --target Tests - name: Run Tests (Windows) if: runner.os == 'Windows' - working-directory: ${{github.workspace}}/build/bin/Debug/ - run: ${{github.workspace}}/build/bin/Debug/Tests.exe + working-directory: ${{github.workspace}}/build/bin/RelWithDebInfo/ + run: ${{github.workspace}}/build/bin/RelWithDebInfo/Tests.exe - name: Run Tests (Linux and macOS) if: runner.os == 'Linux' @@ -93,32 +97,32 @@ jobs: working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=INNOSETUP - cmake --build . --config Debug - cpack . -CDebug -B artifacts + cmake --build . --config RelWithDebInfo + cpack . -CRelWithDebInfo -B artifacts - name: Pack Windows Portable if: runner.os == 'Windows' working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_ZIP - cmake --build . --config Debug - cpack . -CDebug -B artifacts + cmake --build . --config RelWithDebInfo + cpack . -CRelWithDebInfo -B artifacts - name: Pack Linux Portable (ZIP) if: runner.os == 'Linux' working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_ZIP - cmake --build . --config Debug - cpack . -CDebug -B artifacts + cmake --build . --config RelWithDebInfo + cpack . -CRelWithDebInfo -B artifacts - name: Pack Linux Portable (tar.gz) if: runner.os == 'Linux' working-directory: ${{github.workspace}}/build run: | cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_TGZ - cmake --build . --config Debug - cpack . -CDebug -B artifacts + cmake --build . --config RelWithDebInfo + cpack . -CRelWithDebInfo -B artifacts - name: Upload uses: actions/upload-artifact@v4