mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
Compile in release mode for at least one CI runner (#10591)
When we changed our default from RelWithDebInfo to Debug, we inadvertently ended up with all CI building and running in Debug mode. Change at least one of them back to Release to make sure we don't have any optimizations that cause funky stuff. I'm changing the Ubuntu CI image because it's hopefully the fastest (since rust is relatively dog-slow to compile in release mode).
This commit is contained in:
parent
b5f5fa98bf
commit
8f563846e8
1 changed files with 1 additions and 1 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
- name: cmake
|
||||
run: |
|
||||
mkdir build && cd build
|
||||
cmake ..
|
||||
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
- name: make
|
||||
run: |
|
||||
make VERBOSE=1
|
||||
|
|
Loading…
Reference in a new issue