feat(logging): rename ".nvimlog" => "nvim.log" #37935

- Rename ".nvimlog" to "nvim.log"
  - doesn't need to be "hidden"/dotfile
  - ".log" extension helps with filetype detection
- Also rename "nvim/log" => "nvim/nvim.log"
This commit is contained in:
Justin M. Keyes
2026-02-18 11:58:34 -05:00
committed by GitHub
parent d23f28cca2
commit abfe6c9ef7
10 changed files with 35 additions and 32 deletions

View File

@@ -20,7 +20,7 @@ env:
BUILD_DIR: ${{ github.workspace }}/build
INSTALL_PREFIX: ${{ github.workspace }}/nvim-install
LOG_DIR: ${{ github.workspace }}/build/log
NVIM_LOG_FILE: ${{ github.workspace }}/build/.nvimlog
NVIM_LOG_FILE: ${{ github.workspace }}/build/nvim.log
TSAN_OPTIONS: log_path=${{ github.workspace }}/build/log/tsan
VALGRIND_LOG: ${{ github.workspace }}/build/log/valgrind-%p.log
# TEST_FILE: test/functional/core/startup_spec.lua
@@ -176,6 +176,7 @@ jobs:
TEST_TIMEOUT: 600
run: |
set +e
# `-k 0` tells ninja to continue running all targets even if some fail.
cmake --build build --target functionaltest_parallel -j 2 -- -k 0
exit_code="$?"
cmake --build build --target functionaltest_summary