Skip to content

Commit

Permalink
Update Spring version (#260)
Browse files Browse the repository at this point in the history
* Update Spring version

* Optimize testing script

* Print to null
  • Loading branch information
marcauberer committed Dec 22, 2021
1 parent 18fa358 commit 44fc313
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/scripts/service-tester/predefined-service-tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ def reset_environment():
system("docker container prune -f > /dev/null")
print(" done")

print("Pruning images ...", end='')
system("docker image rm -f $(docker images -a | grep -v \"compose-generator-toolbox\" | awk 'NR>1 {print $3}') > /dev/null");
print(" done")

print("Pruning networks ...", end='')
system("docker network prune -f > /dev/null")
print(" done")
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/spring-gradle/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{
"text": "Spring version",
"type": 2,
"defaultValue": "2.6.1",
"defaultValue": "2.6.2",
"variable": "SPRING_GRADLE_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/spring-maven/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
{
"text": "Spring version",
"type": 2,
"defaultValue": "2.6.1",
"defaultValue": "2.6.2",
"variable": "SPRING_MAVEN_VERSION"
},
{
Expand Down

0 comments on commit 44fc313

Please sign in to comment.