aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolai Aleksandrovich Pavlov <kp-pav@yandex.ru>2017-03-31 15:32:58 +0300
committerJustin M. Keyes <justinkz@gmail.com>2017-03-31 14:32:58 +0200
commita1c928e70cd995426449ac6ec6df3b5a492580e5 (patch)
tree6996b02ac2ecbd3e8894f38b74ecc762d69f3cbb
parent77539eef9baa0d070a1d07360dda2177c2ae41a7 (diff)
downloadrneovim-a1c928e70cd995426449ac6ec6df3b5a492580e5.tar.gz
rneovim-a1c928e70cd995426449ac6ec6df3b5a492580e5.tar.bz2
rneovim-a1c928e70cd995426449ac6ec6df3b5a492580e5.zip
ci: Do not hide ci directory (#6410)
-rw-r--r--.travis.yml12
-rw-r--r--README.md2
-rw-r--r--appveyor.yml4
-rwxr-xr-xci/after_success.sh (renamed from .ci/after_success.sh)0
-rwxr-xr-xci/before_cache.sh (renamed from .ci/before_cache.sh)0
-rwxr-xr-xci/before_install.sh (renamed from .ci/before_install.sh)0
-rwxr-xr-xci/before_script.sh (renamed from .ci/before_script.sh)0
-rw-r--r--ci/build.bat (renamed from .ci/build.bat)0
-rw-r--r--ci/common/build.sh (renamed from .ci/common/build.sh)0
-rw-r--r--ci/common/test.sh (renamed from .ci/common/test.sh)0
-rwxr-xr-xci/install.sh (renamed from .ci/install.sh)0
-rwxr-xr-xci/run_tests.sh (renamed from .ci/run_tests.sh)0
-rwxr-xr-xci/script.sh (renamed from .ci/script.sh)4
-rw-r--r--test/unit/helpers.lua2
14 files changed, 12 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index d28fc9d7f1..a02d44ea47 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -83,12 +83,12 @@ matrix:
- env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON"
fast_finish: true
-before_install: .ci/before_install.sh
-install: .ci/install.sh
-before_script: .ci/before_script.sh
-script: .ci/script.sh
-before_cache: .ci/before_cache.sh
-after_success: .ci/after_success.sh
+before_install: ci/before_install.sh
+install: ci/install.sh
+before_script: ci/before_script.sh
+script: ci/script.sh
+before_cache: ci/before_cache.sh
+after_success: ci/after_success.sh
addons:
apt:
diff --git a/README.md b/README.md
index dcead08331..bfa0216a0f 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ Packages are in [Homebrew], [Debian], [Ubuntu], [Fedora], [Arch Linux], and
Project layout
--------------
-- `.ci/`: Build server scripts
+- `ci/`: Build server scripts
- `cmake/`: Build scripts
- `runtime/`: Application files
- [`src/`](src/nvim/README.md): Application source code
diff --git a/appveyor.yml b/appveyor.yml
index ed5e06e3ee..091e86583a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -4,9 +4,9 @@ configuration:
- MINGW_32
install: []
build_script:
-- call .ci\build.bat
+- call ci\build.bat
cache:
-- C:\msys64\var\cache\pacman\pkg -> .ci\build.bat
+- C:\msys64\var\cache\pacman\pkg -> ci\build.bat
- .deps -> third-party/CMakeLists.txt
artifacts:
- path: build/Neovim.zip
diff --git a/.ci/after_success.sh b/ci/after_success.sh
index 0215eb139b..0215eb139b 100755
--- a/.ci/after_success.sh
+++ b/ci/after_success.sh
diff --git a/.ci/before_cache.sh b/ci/before_cache.sh
index dd1fcf2bf7..dd1fcf2bf7 100755
--- a/.ci/before_cache.sh
+++ b/ci/before_cache.sh
diff --git a/.ci/before_install.sh b/ci/before_install.sh
index 9aac37de12..9aac37de12 100755
--- a/.ci/before_install.sh
+++ b/ci/before_install.sh
diff --git a/.ci/before_script.sh b/ci/before_script.sh
index 4a75e89fbe..4a75e89fbe 100755
--- a/.ci/before_script.sh
+++ b/ci/before_script.sh
diff --git a/.ci/build.bat b/ci/build.bat
index 87a171b994..87a171b994 100644
--- a/.ci/build.bat
+++ b/ci/build.bat
diff --git a/.ci/common/build.sh b/ci/common/build.sh
index 44087513ee..44087513ee 100644
--- a/.ci/common/build.sh
+++ b/ci/common/build.sh
diff --git a/.ci/common/test.sh b/ci/common/test.sh
index b28e46a4df..b28e46a4df 100644
--- a/.ci/common/test.sh
+++ b/ci/common/test.sh
diff --git a/.ci/install.sh b/ci/install.sh
index 98d3dc01cb..98d3dc01cb 100755
--- a/.ci/install.sh
+++ b/ci/install.sh
diff --git a/.ci/run_tests.sh b/ci/run_tests.sh
index 6347ac15d4..6347ac15d4 100755
--- a/.ci/run_tests.sh
+++ b/ci/run_tests.sh
diff --git a/.ci/script.sh b/ci/script.sh
index 46c4eecf38..79a1bec201 100755
--- a/.ci/script.sh
+++ b/ci/script.sh
@@ -12,7 +12,7 @@ fi
# as $USER, while retaining the environment variables defined and belonging
# to secondary groups given above in usermod.
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- sudo -E su "${USER}" -c ".ci/run_tests.sh"
+ sudo -E su "${USER}" -c "ci/run_tests.sh"
else
- .ci/run_tests.sh
+ ci/run_tests.sh
fi
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua
index 8aad3acd98..f4e6194fc7 100644
--- a/test/unit/helpers.lua
+++ b/test/unit/helpers.lua
@@ -574,7 +574,7 @@ local function gen_itp(it)
if not err then
if allow_failure then
io.stderr:write('Errorred out:\n' .. tostring(emsg) .. '\n')
- os.execute([[sh -c "source .ci/common/test.sh ; check_core_dumps --delete \"]] .. Paths.test_luajit_prg .. [[\""]])
+ os.execute([[sh -c "source ci/common/test.sh ; check_core_dumps --delete \"]] .. Paths.test_luajit_prg .. [[\""]])
else
error(emsg)
end