diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-02-17 18:35:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 18:35:25 +0800 |
commit | ea0737c838b029fc96b1321c4ac15e0dc7e29b84 (patch) | |
tree | 935cf15852aa2fa9922764a7d759b4b938680a8f | |
parent | 848fc8ede84b9cfc4e651e0e3b449060a8a8d70c (diff) | |
download | rneovim-ea0737c838b029fc96b1321c4ac15e0dc7e29b84.tar.gz rneovim-ea0737c838b029fc96b1321c4ac15e0dc7e29b84.tar.bz2 rneovim-ea0737c838b029fc96b1321c4ac15e0dc7e29b84.zip |
ci(test.yml): explicitly set build type (#27503)
Explicitly set the build type for both deps and Nvim. They are already
explicitly set on Windows to RelWithDebInfo. Now also explicitly set
them to Debug on POSIX.
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 43fd76dd39..86f11fcd99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -146,12 +146,12 @@ jobs: - name: Build third-party deps run: | - cmake -S cmake.deps --preset ci ${{ matrix.build.deps_flags }} + cmake -S cmake.deps --preset ci -D CMAKE_BUILD_TYPE=Debug ${{ matrix.build.deps_flags }} cmake --build .deps - name: Build run: | - cmake --preset ci -D CMAKE_INSTALL_PREFIX:PATH=$INSTALL_PREFIX ${{ matrix.build.flags }} + cmake --preset ci -D CMAKE_BUILD_TYPE=Debug -D CMAKE_INSTALL_PREFIX:PATH=$INSTALL_PREFIX ${{ matrix.build.flags }} cmake --build build - name: ${{ matrix.test }} |