Skip to content

Commit

Permalink
Fix travis build (#415)
Browse files Browse the repository at this point in the history
* Fix travisCI build issue in wget.

* Fix travisCI build for ca-cert

* Fix travisCI builds
  • Loading branch information
shanmsac authored Feb 7, 2022
1 parent 03e808b commit d3db119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ matrix:
- ls
- df -h
- echo "Building KPL in current directory in the Container..."
- docker run --memory 9g -v $(pwd):/kpl -it amazonlinux:2 /bin/bash -c "export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY && export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID && yum install -y -q cmake3 gcc gcc-c++ make file tar gzip which perl git libuuid libuuid-devel maven zlib zlib-devel zlib-static && cd /kpl && ls && ./bootstrap.sh"
- docker run --memory 9g -v $(pwd):/kpl -it amazonlinux:2 /bin/bash -c "export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY && export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID && yum install -y -q cmake3 gcc gcc-c++ make file tar gzip which perl git libuuid libuuid-devel maven zlib zlib-devel zlib-static wget && cd /kpl && ls && ./bootstrap.sh"
- cd java/amazon-kinesis-producer/src/main/resources/amazon-kinesis-producer-native-binaries/$TRAVIS_OS_NAME-`uname -m`
- ls
- sudo zip kinesis-producer.zip kinesis_producer
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function _curl {
}

cd $INSTALL_DIR
wget -P --no-check-certificate $INSTALL_DIR $CA_CERT
wget --no-check-certificate -P $INSTALL_DIR $CA_CERT

function conf {
if [[ "$OSTYPE" == "darwin"* ]]; then
Expand Down

0 comments on commit d3db119

Please sign in to comment.