Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.

Commit c1209f7

Browse files
committed
Travis CI: Do not update homebrew on macOS
1 parent 78a1df3 commit c1209f7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,12 @@ cache:
6262
# Cache whole deps dir hoping you will not need to download and
6363
# build external dependencies next build.
6464
- $TRAVIS_BUILD_DIR/build/deps
65-
install:
66-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/install_cmake.sh && ./scripts/install_solc_lllc.sh; fi
67-
- ./scripts/install_deps.sh
65+
install: |
66+
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
67+
./scripts/install_cmake.sh && ./scripts/install_solc_lllc.sh;
68+
fi
69+
export HOMEBREW_NO_AUTO_UPDATE=1
70+
./scripts/install_deps.sh
6871
before_script:
6972
- ./scripts/prepare_ccache.sh
7073
- travis_wait 150 ./scripts/build.sh $TRAVIS_BUILD_TYPE

0 commit comments

Comments
 (0)