Skip to content

Commit 15f37de

Browse files
committed
refactor: build with RelWithDebInfo
1 parent 9f93e35 commit 15f37de

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ jobs:
2929
run: |
3030
mkdir build
3131
cd build
32-
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
32+
cmake -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
3333
cmake --build .
3434
3535
- name: Upload Artifacts
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: example-plugin-windows
39-
path: ./build/*.dll
39+
path: |
40+
./build/*.dll
41+
./build/*.pdb
4042
4143
build_linux:
4244
name: Build on Ubuntu
@@ -66,7 +68,7 @@ jobs:
6668
run: |
6769
mkdir build
6870
cd build
69-
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
71+
cmake -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
7072
cmake --build .
7173
7274
- name: Upload Artifacts

0 commit comments

Comments
 (0)