aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-10-31 12:12:18 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2023-11-01 08:20:24 +0100
commit1997ef134a9a1504fdaf6e7751f470e92d283a45 (patch)
treed4ee9cbc13a47c18769104b97acc284496eebd9f /.github/workflows
parentd7359a87425dc38efda4f74bd580bae9946abe31 (diff)
downloadrneovim-1997ef134a9a1504fdaf6e7751f470e92d283a45.tar.gz
rneovim-1997ef134a9a1504fdaf6e7751f470e92d283a45.tar.bz2
rneovim-1997ef134a9a1504fdaf6e7751f470e92d283a45.zip
build: set char to always be signed
Sticking to the same convention makes it easier to reason about the code and reduces complexity.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a9fbf4330a..1ff6b31a2d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -110,7 +110,7 @@ jobs:
[
{ runner: ubuntu-22.04, flavor: asan, cc: clang, flags: -D ENABLE_ASAN_UBSAN=ON },
{ runner: ubuntu-22.04, flavor: tsan, cc: clang, flags: -D ENABLE_TSAN=ON },
- { runner: ubuntu-22.04, flavor: uchar, cc: gcc, flags: -D UNSIGNED_CHAR=ON },
+ { runner: ubuntu-22.04, cc: gcc },
{ runner: macos-12, cc: clang, flags: -D CMAKE_FIND_FRAMEWORK=NEVER, deps_flags: -D CMAKE_FIND_FRAMEWORK=NEVER },
{ runner: ubuntu-22.04, flavor: functionaltest-lua, cc: gcc, deps_flags: -D USE_BUNDLED_LUAJIT=OFF -D USE_BUNDLED_LUA=ON, flags: -D PREFER_LUA=ON },
]