aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-03-07 21:15:20 +0100
committerGitHub <noreply@github.com>2023-03-07 21:15:20 +0100
commite0e474a4bb42c24cf13662135f53a164a826f48e (patch)
tree5d6fb608f9671df2a7623ae53ad41ccaa92b9711 /.github/workflows
parent4385f8a7430f8181189f385a6cfb4e295d30b21e (diff)
parent30632dd21ab243bb2c4eb115819a32fdfd9155dc (diff)
downloadrneovim-e0e474a4bb42c24cf13662135f53a164a826f48e.tar.gz
rneovim-e0e474a4bb42c24cf13662135f53a164a826f48e.tar.bz2
rneovim-e0e474a4bb42c24cf13662135f53a164a826f48e.zip
Merge pull request #22561 from bfredl/cmakeinstall
refactor(build): make installation of runtime/ more effective
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml12
1 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e6c134b583..22be9bf719 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -241,17 +241,9 @@ jobs:
fi
# Check that all runtime files were installed
- for file in $(git -C runtime ls-files '*.vim' '*.ps' '*.dict' '*.py' '*.tutor'); do
+ for file in $(git -C runtime ls-files '*.vim' '*.ps' '*.dict' '*.py' '*.tutor' '*.awk' '*.sh' '*.bat'); do
if ! test -e "$INSTALL_PREFIX/share/nvim/runtime/$file"; then
- printf "%s%s" 'It appears that %s is not installed.' "$file"
- exit 1
- fi
- done
-
- # Check that some runtime files are installed and are executables
- for file in $(git -C runtime ls-files '*.awk' '*.sh' '*.bat'); do
- if ! test -x "$INSTALL_PREFIX/share/nvim/runtime/$file"; then
- printf "%s%s" 'It appears that %s is not installed or is not executable.' "$file"
+ printf "It appears that %s is not installed." "$file"
exit 1
fi
done