aboutsummaryrefslogtreecommitdiff
path: root/ci/before_script.sh
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-01-01 18:42:26 +0100
committerGitHub <noreply@github.com>2022-01-01 12:42:26 -0500
commitf86039de1e6583cbdb48a33d89c782ff65baf767 (patch)
tree2156e6cc7d95be930b57a997d6c02651253d2508 /ci/before_script.sh
parent302beaa36b8b53765c986bd88741e0d547256938 (diff)
downloadrneovim-f86039de1e6583cbdb48a33d89c782ff65baf767.tar.gz
rneovim-f86039de1e6583cbdb48a33d89c782ff65baf767.tar.bz2
rneovim-f86039de1e6583cbdb48a33d89c782ff65baf767.zip
ci: remove outdated travis-specific code (#16869)
Diffstat (limited to 'ci/before_script.sh')
-rwxr-xr-xci/before_script.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/ci/before_script.sh b/ci/before_script.sh
index 701fe1d9eb..f7216338d4 100755
--- a/ci/before_script.sh
+++ b/ci/before_script.sh
@@ -6,12 +6,6 @@ set -o pipefail
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${CI_DIR}/common/build.sh"
-# Enable ipv6 on Travis. ref: a39c8b7ce30d
-if test -n "${TRAVIS_OS_NAME}" && ! test "${TRAVIS_OS_NAME}" = osx ; then
- echo "before_script.sh: enable ipv6"
- sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0
-fi
-
# Test some of the configuration variables.
if [[ -n "${GCOV}" ]] && [[ ! $(type -P "${GCOV}") ]]; then
echo "\$GCOV: '${GCOV}' is not executable."
@@ -27,13 +21,6 @@ ccache -s
# Reset ccache stats for real results in before_cache.
ccache --zero-stats
-if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- # Adds user to a dummy group.
- # That allows to test changing the group of the file by `os_fchown`.
- sudo dscl . -create /Groups/chown_test
- sudo dscl . -append /Groups/chown_test GroupMembership "${USER}"
-fi
-
# Compile dependencies.
build_deps