diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-03-11 20:14:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-11 20:14:33 +0800 |
commit | b9d693b8046581d61373a43bdf9eb586a451c2e1 (patch) | |
tree | 84d0ca3d86d2f79834616b1514b5fdc74cb4577f | |
parent | a14fca432b963b01ae9b47598f5d787520402810 (diff) | |
download | rneovim-b9d693b8046581d61373a43bdf9eb586a451c2e1.tar.gz rneovim-b9d693b8046581d61373a43bdf9eb586a451c2e1.tar.bz2 rneovim-b9d693b8046581d61373a43bdf9eb586a451c2e1.zip |
ci(test): enable translations in at least one job (#32833)
Enable translations in the GCC release job, as it's the fastest.
Although there aren't many tests for translation behavior, this still
allows ensuring that Nvim isn't broken when translations are enabled.
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fa170a87e1..fec6c15026 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -110,7 +110,7 @@ jobs: [ { runner: ubuntu-24.04, os: ubuntu, flavor: asan, cc: clang, flags: -D ENABLE_ASAN_UBSAN=ON }, { runner: ubuntu-24.04, os: ubuntu, flavor: tsan, cc: clang, flags: -D ENABLE_TSAN=ON }, - { runner: ubuntu-24.04, os: ubuntu, flavor: release, cc: gcc, flags: -D CMAKE_BUILD_TYPE=Release }, + { runner: ubuntu-24.04, os: ubuntu, flavor: release, cc: gcc, flags: -D CMAKE_BUILD_TYPE=Release -D ENABLE_TRANSLATIONS=ON }, # { runner: ubuntu-24.04-arm, os: ubuntu, flavor: arm, cc: gcc, flags: -D CMAKE_BUILD_TYPE=RelWithDebInfo }, { runner: macos-13, os: macos, flavor: intel, cc: clang, flags: -D CMAKE_FIND_FRAMEWORK=NEVER, deps_flags: -D CMAKE_FIND_FRAMEWORK=NEVER }, { runner: macos-15, os: macos, flavor: arm, cc: clang, flags: -D CMAKE_FIND_FRAMEWORK=NEVER, deps_flags: -D CMAKE_FIND_FRAMEWORK=NEVER }, |