Skip to content

Commit

Permalink
refactor: build with RelWithDebInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-vincent committed Apr 30, 2024
1 parent 9f93e35 commit 15f37de
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ jobs:
run: |
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
cmake --build .
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: example-plugin-windows
path: ./build/*.dll
path: |
./build/*.dll
./build/*.pdb
build_linux:
name: Build on Ubuntu
Expand Down Expand Up @@ -66,7 +68,7 @@ jobs:
run: |
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
cmake --build .
- name: Upload Artifacts
Expand Down

0 comments on commit 15f37de

Please sign in to comment.