mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ci: Do not hide ci directory (#6410)
This commit is contained in:
parent
77539eef9b
commit
a1c928e70c
12
.travis.yml
12
.travis.yml
@ -83,12 +83,12 @@ matrix:
|
|||||||
- env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON"
|
- env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON"
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
before_install: .ci/before_install.sh
|
before_install: ci/before_install.sh
|
||||||
install: .ci/install.sh
|
install: ci/install.sh
|
||||||
before_script: .ci/before_script.sh
|
before_script: ci/before_script.sh
|
||||||
script: .ci/script.sh
|
script: ci/script.sh
|
||||||
before_cache: .ci/before_cache.sh
|
before_cache: ci/before_cache.sh
|
||||||
after_success: .ci/after_success.sh
|
after_success: ci/after_success.sh
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
|
@ -43,7 +43,7 @@ Packages are in [Homebrew], [Debian], [Ubuntu], [Fedora], [Arch Linux], and
|
|||||||
Project layout
|
Project layout
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
- `.ci/`: Build server scripts
|
- `ci/`: Build server scripts
|
||||||
- `cmake/`: Build scripts
|
- `cmake/`: Build scripts
|
||||||
- `runtime/`: Application files
|
- `runtime/`: Application files
|
||||||
- [`src/`](src/nvim/README.md): Application source code
|
- [`src/`](src/nvim/README.md): Application source code
|
||||||
|
@ -4,9 +4,9 @@ configuration:
|
|||||||
- MINGW_32
|
- MINGW_32
|
||||||
install: []
|
install: []
|
||||||
build_script:
|
build_script:
|
||||||
- call .ci\build.bat
|
- call ci\build.bat
|
||||||
cache:
|
cache:
|
||||||
- C:\msys64\var\cache\pacman\pkg -> .ci\build.bat
|
- C:\msys64\var\cache\pacman\pkg -> ci\build.bat
|
||||||
- .deps -> third-party/CMakeLists.txt
|
- .deps -> third-party/CMakeLists.txt
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: build/Neovim.zip
|
- path: build/Neovim.zip
|
||||||
|
@ -12,7 +12,7 @@ fi
|
|||||||
# as $USER, while retaining the environment variables defined and belonging
|
# as $USER, while retaining the environment variables defined and belonging
|
||||||
# to secondary groups given above in usermod.
|
# to secondary groups given above in usermod.
|
||||||
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
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
|
else
|
||||||
.ci/run_tests.sh
|
ci/run_tests.sh
|
||||||
fi
|
fi
|
@ -574,7 +574,7 @@ local function gen_itp(it)
|
|||||||
if not err then
|
if not err then
|
||||||
if allow_failure then
|
if allow_failure then
|
||||||
io.stderr:write('Errorred out:\n' .. tostring(emsg) .. '\n')
|
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
|
else
|
||||||
error(emsg)
|
error(emsg)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user