Skip to content

Commit

Permalink
Merge pull request #44 from StefanUPB/v4.0
Browse files Browse the repository at this point in the history
set container tags to v4.0
  • Loading branch information
Stefan Schneider committed Jul 31, 2018
2 parents 8085e28 + e731f14 commit 6abe111
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pipeline/build/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -e
docker build -t registry.sonata-nfv.eu:5000/tng-sdk-project .
docker build -t registry.sonata-nfv.eu:5000/tng-sdk-project:v4.0 .
2 changes: 1 addition & 1 deletion pipeline/checkstyle/check.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
echo "checking style ..."
docker run -i --rm registry.sonata-nfv.eu:5000/tng-sdk-project pycodestyle --exclude .eggs --max-line-length=120 .
docker run -i --rm registry.sonata-nfv.eu:5000/tng-sdk-project:v4.0 pycodestyle --exclude .eggs --max-line-length=120 .
echo "done."
# always exit with 0 (ugly code style is not an error :))
#exit 0
2 changes: 1 addition & 1 deletion pipeline/publish/publish.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -e
docker push registry.sonata-nfv.eu:5000/tng-sdk-project
docker push registry.sonata-nfv.eu:5000/tng-sdk-project:v4.0
2 changes: 1 addition & 1 deletion pipeline/unittest/test.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -e
docker run -i --rm registry.sonata-nfv.eu:5000/tng-sdk-project pytest -v
docker run -i --rm registry.sonata-nfv.eu:5000/tng-sdk-project:v4.0 pytest -v

0 comments on commit 6abe111

Please sign in to comment.