diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-02-12 07:49:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-12 07:49:08 +0800 |
commit | 00d75a24cfb74e8f35d73ebb0e59a7b9248950c1 (patch) | |
tree | a53ba2fc2dc2a1315fabf09c4b6037bab04c77b6 | |
parent | ac768996b295fe58256444a258911ec0fb9adc3f (diff) | |
download | rneovim-00d75a24cfb74e8f35d73ebb0e59a7b9248950c1.tar.gz rneovim-00d75a24cfb74e8f35d73ebb0e59a7b9248950c1.tar.bz2 rneovim-00d75a24cfb74e8f35d73ebb0e59a7b9248950c1.zip |
vim-patch:9.1.1104: CI: using Ubuntu 22.04 Github runners (#32409)
Problem: CI: uses Ubuntu 22.04 runners
Solution: Switch to Ubuntu 24.04 runners, make a few adjustments for
different $TMPDIR (Drew Vogel)
closes: vim/vim#16442
https://github.com/vim/vim/commit/f0ed0e6f6304d2eb6f43866126912c139778257d
Co-authored-by: Drew Vogel <dvogel@github>
-rw-r--r-- | test/old/testdir/test_messages.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_messages.vim b/test/old/testdir/test_messages.vim index bfead20142..391c2db493 100644 --- a/test/old/testdir/test_messages.vim +++ b/test/old/testdir/test_messages.vim @@ -391,7 +391,7 @@ endfunc func Test_echo_verbose_system() CheckRunVimInTerminal CheckUnix " needs the "seq" command - CheckNotMac " doesn't use /tmp + CheckNotMac " the macos TMPDIR is too long for snapshot testing let buf = RunVimInTerminal('', {'rows': 10}) call term_sendkeys(buf, ":4 verbose echo system('seq 20')\<CR>") |