Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.travis.yml: Remove unnecessary if UNSUPPORTED #2646

Merged
merged 2 commits into from Jul 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .ci/deps.apt.sh 100644 → 100755
@@ -1,3 +1,5 @@
#!/bin/bash

set -e
set -x

Expand Down
4 changes: 3 additions & 1 deletion .ci/deps.cabal.sh 100644 → 100755
@@ -1,4 +1,6 @@
set -e
#!/bin/sh

set -e -x

# cabal-install 1.22 is the minimum tested version
cabal --version
Expand Down
Empty file modified .ci/deps.java.sh 100644 → 100755
Empty file.
Empty file modified .ci/deps.opam.sh 100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions .ci/deps.pip.sh 100644 → 100755
@@ -1,3 +1,8 @@
#!/bin/bash

# This script is no longer used by Travis CI.
# Any related aspects can be removed if beneficial.

set -e
set -x

Expand Down
2 changes: 2 additions & 0 deletions .ci/deps.r.sh 100644 → 100755
@@ -1,3 +1,5 @@
#!/bin/sh

set -e
set -x

Expand Down
Empty file modified .ci/deps.sh 100644 → 100755
Empty file.
12 changes: 6 additions & 6 deletions .travis.yml
Expand Up @@ -169,12 +169,12 @@ before_install:
- nvm install 6.10.2
# Remove Ruby directive from Gemfile as this image has 2.2.5
- sed -i '/^ruby/d' Gemfile
- if [[ "$UNSUPPORTED" != true ]]; then bash .ci/deps.sh; fi
- if [[ "$UNSUPPORTED" != true ]]; then bash .ci/deps.go.sh; fi
- if [[ "$UNSUPPORTED" != true ]]; then bash .ci/deps.cabal.sh; fi
- if [[ "$UNSUPPORTED" != true ]]; then bash .ci/deps.r.sh; fi
- if [[ "$UNSUPPORTED" != true ]]; then bash .ci/deps.opam.sh; fi
- if [[ "$UNSUPPORTED" != true ]]; then bash .ci/deps.java.sh; fi
- .ci/deps.sh
- .ci/deps.go.sh
- .ci/deps.cabal.sh
- .ci/deps.r.sh
- .ci/deps.opam.sh
- .ci/deps.java.sh
# https://github.com/coala/coala/issues/3183
- cp requirements.txt requirements.orig
- printf '%s\n%s\n%s\n'
Expand Down