diff options
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | appveyor.yml | 4 | ||||
-rwxr-xr-x | ci/after_success.sh (renamed from .ci/after_success.sh) | 0 | ||||
-rwxr-xr-x | ci/before_cache.sh (renamed from .ci/before_cache.sh) | 0 | ||||
-rwxr-xr-x | ci/before_install.sh (renamed from .ci/before_install.sh) | 0 | ||||
-rwxr-xr-x | ci/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-x | ci/install.sh (renamed from .ci/install.sh) | 0 | ||||
-rwxr-xr-x | ci/run_tests.sh (renamed from .ci/run_tests.sh) | 0 | ||||
-rwxr-xr-x | ci/script.sh (renamed from .ci/script.sh) | 4 | ||||
-rw-r--r-- | test/unit/helpers.lua | 2 |
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: @@ -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 |