diff options
author | James McCoy <jamessan@jamessan.com> | 2020-11-13 12:45:39 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-11-13 13:38:12 -0500 |
commit | 25a8385cd13c67deef5ded4c879a8057865caf5b (patch) | |
tree | 2ab918e716594451cf27367bf183abc96b999075 /src | |
parent | eb96bec4bbbf55266b89d50a36a85b8caaa9a9fb (diff) | |
download | rneovim-25a8385cd13c67deef5ded4c879a8057865caf5b.tar.gz rneovim-25a8385cd13c67deef5ded4c879a8057865caf5b.tar.bz2 rneovim-25a8385cd13c67deef5ded4c879a8057865caf5b.zip |
ci: Rename travis_fold to ci_fold and add GHA support
Diffstat (limited to 'src')
-rwxr-xr-x | src/nvim/testdir/runnvim.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/runnvim.sh b/src/nvim/testdir/runnvim.sh index 72f9254635..25cb8437b4 100755 --- a/src/nvim/testdir/runnvim.sh +++ b/src/nvim/testdir/runnvim.sh @@ -66,7 +66,7 @@ main() {( fi fi if test "$FAILED" = 1 ; then - travis_fold start "$NVIM_TEST_CURRENT_SUITE/$test_name" + ci_fold start "$NVIM_TEST_CURRENT_SUITE/$test_name" fi valgrind_check . if test -n "$LOG_DIR" ; then @@ -78,7 +78,7 @@ main() {( fi rm -f "$tlog" if test "$FAILED" = 1 ; then - travis_fold end "$NVIM_TEST_CURRENT_SUITE/$test_name" + ci_fold end "$NVIM_TEST_CURRENT_SUITE/$test_name" fi if test "$FAILED" = 1 ; then echo "Test $test_name failed, see output above and summary for more details" >> test.log |