Skip to content

Commit df4a30b

Browse files
committed
to revert
1 parent 56fc4b3 commit df4a30b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,18 @@ jobs:
7070
run: brew install ninja
7171

7272
- name: Configure CMake
73-
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
73+
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
7474

7575
- name: Build Project
76-
run: cmake --build ${{github.workspace}}/build --config RelWithDebInfo
76+
run: cmake --build ${{github.workspace}}/build --config Debug
7777

7878
- name: Build Tests
79-
run: cmake --build ${{github.workspace}}/build --config RelWithDebInfo --target Tests
79+
run: cmake --build ${{github.workspace}}/build --config Debug --target Tests
8080

8181
- name: Run Tests (Windows)
8282
if: runner.os == 'Windows'
83-
working-directory: ${{github.workspace}}/build/bin/RelWithDebInfo/
84-
run: ${{github.workspace}}/build/bin/RelWithDebInfo/Tests.exe
83+
working-directory: ${{github.workspace}}/build/bin/Debug/
84+
run: ${{github.workspace}}/build/bin/Debug/Tests.exe
8585

8686
- name: Run Tests (Linux and macOS)
8787
if: runner.os == 'Linux'
@@ -93,32 +93,32 @@ jobs:
9393
working-directory: ${{github.workspace}}/build
9494
run: |
9595
cmake . -DAUI_APP_PACKAGING=INNOSETUP
96-
cmake --build . --config RelWithDebInfo
97-
cpack . -CRelWithDebInfo -B artifacts
96+
cmake --build . --config Debug
97+
cpack . -CDebug -B artifacts
9898
9999
- name: Pack Windows Portable
100100
if: runner.os == 'Windows'
101101
working-directory: ${{github.workspace}}/build
102102
run: |
103103
cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_ZIP
104-
cmake --build . --config RelWithDebInfo
105-
cpack . -CRelWithDebInfo -B artifacts
104+
cmake --build . --config Debug
105+
cpack . -CDebug -B artifacts
106106
107107
- name: Pack Linux Portable (ZIP)
108108
if: runner.os == 'Linux'
109109
working-directory: ${{github.workspace}}/build
110110
run: |
111111
cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_ZIP
112-
cmake --build . --config RelWithDebInfo
113-
cpack . -CRelWithDebInfo -B artifacts
112+
cmake --build . --config Debug
113+
cpack . -CDebug -B artifacts
114114
115115
- name: Pack Linux Portable (tar.gz)
116116
if: runner.os == 'Linux'
117117
working-directory: ${{github.workspace}}/build
118118
run: |
119119
cmake . -DAUI_APP_PACKAGING=AUI_PORTABLE_TGZ
120-
cmake --build . --config RelWithDebInfo
121-
cpack . -CRelWithDebInfo -B artifacts
120+
cmake --build . --config Debug
121+
cpack . -CDebug -B artifacts
122122
123123
- name: Upload
124124
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)