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

Fix CI Job #192

Merged
merged 2 commits into from Oct 26, 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
4 changes: 1 addition & 3 deletions .travis.yml
Expand Up @@ -14,6 +14,4 @@ services:
- docker

script:
- make
- ./build/prepare_integration_tests_travis.sh
- make test-integration
- ./build/travis_build.sh
Expand Up @@ -2,6 +2,13 @@

set -e

# Find the JAVA_HOME and set the KOTLIN_JDK_HOME
echo "Java home: $JAVA_HOME"
export KOTLIN_JDK_HOME=$JAVA_HOME

# First build the whole project
make

# set docker0 to promiscuous mode
sudo ip link set docker0 promisc on

Expand Down Expand Up @@ -59,3 +66,7 @@ echo "installing camel k cluster resources"
./kamel install --cluster-setup

oc login -u developer


# Then run integration tests
make test-integration