File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/test/java/com/github/dockerjava Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2121 - COVERITY_SCAN_NOTIFICATION_EMAIL="kanstantsin.sha@gmail.com"
2222
2323 matrix :
24- - repo="main" DOCKER_HOST="tcp://127.0.0.1:2375" DOCKER_VERSION="1.11.2-0~trusty" DEPLOY=true FAST_BUILD=true COVERITY=true
25- - repo="main" DOCKER_HOST="tcp://127.0.0.1:2375" DOCKER_VERSION="1.11.2-0~trusty"
24+ - repo="main" DOCKER_HOST="tcp://127.0.0.1:2375" DOCKER_VERSION="1.11.2-0~trusty" DEPLOY=true COVERITY=true CODECOV=true
2625 - repo="main" DOCKER_HOST="unix:///var/run/docker.sock" DOCKER_VERSION="1.11.2-0~trusty"
2726 - repo="main" DOCKER_HOST="unix:///var/run/docker.sock" DOCKER_VERSION="1.10.3-0~trusty"
2827# - repo="testing" DOCKER_HOST="tcp://127.0.0.1:2375"
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ if [[ $CODECOV == " true" ]]; then
4+ codecov
5+ fi
36
4- codecov
57if [[ $TRAVIS_BRANCH == " master" ]] && [[ $TRAVIS_PULL_REQUEST == " false" ]] && [[ $DEPLOY == " true" ]];
68then
79 cat << EOF >> ~/settings.xml
Original file line number Diff line number Diff line change @@ -28,8 +28,7 @@ sudo -E apt-cache policy docker-engine
2828# sudo apt-get -f install
2929# sudo dpkg -i "$(ls *${DOCKER_VERSION}*)"
3030# popd
31- # rm -f "src/test/resources/logback.xml"
32- mv " src/test/resources/travis-logback.xml" " src/test/resources/logback.xml"
31+
3332
3433echo ' DOCKER_OPTS="-H=unix:///var/run/docker.sock -H=tcp://127.0.0.1:2375"' | sudo tee -a /etc/default/docker
3534sudo -E restart docker
Original file line number Diff line number Diff line change 1919import com .github .dockerjava .api .command .CreateContainerResponse ;
2020import com .github .dockerjava .client .AbstractDockerClientTest ;
2121
22- @ Test (groups = "integration-auth" )
22+ @ Test (groups = { "integration-auth" , "integration" } )
2323public class PushImageCmdImplTest extends AbstractDockerClientTest {
2424
2525 public static final Logger LOG = LoggerFactory .getLogger (PushImageCmdImplTest .class );
Original file line number Diff line number Diff line change 2121import com .github .dockerjava .core .command .PushImageResultCallback ;
2222import com .github .dockerjava .netty .AbstractNettyDockerClientTest ;
2323
24- @ Test (groups = "integration-auth" )
24+ @ Test (groups = { "integration" , "integration -auth"} )
2525public class PushImageCmdExecTest extends AbstractNettyDockerClientTest {
2626
2727 public static final Logger LOG = LoggerFactory .getLogger (PushImageCmdExecTest .class );
You can’t perform that action at this time.
0 commit comments