Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- mvn clean dependency:go-offline install -Dmaven.test.skip=true --fail-never --threads 5 -B
test:
override:
- mvn test -T2C
- ./scripts/run_circle_tests.sh
deployment:
snapshot:
branch: vgs-edition
Expand All @@ -22,10 +22,12 @@ deployment:
tag: /.*/
commands:
- git config user.name "circleci"
- git config user.email "circleci@vgs.com"
- git fetch
- git checkout $RELEASE_BRANCH
- git pull origin $RELEASE_BRANCH
- git reset --hard
- git tag -d $CIRCLE_TAG
- mvn -B -X -e gitflow:release-start gitflow:release-finish -DreleaseVersion=$CIRCLE_TAG -DpostReleaseGoals=deploy -DskipTests
- mvn -B -X -e gitflow:release-start -DreleaseVersion=$CIRCLE_TAG
- mvn -B -X -e gitflow:release-finish -DreleaseVersion=$CIRCLE_TAG -DpostReleaseGoals='deploy -DskipTests'
- git push origin $RELEASE_BRANCH
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.littleshoot</groupId>
<artifactId>littleproxy</artifactId>
<packaging>jar</packaging>
<version>1.1.5.0-VGS</version>
<version>1.1.5.0-VGS-SNAPSHOT</version>
<name>LittleProxy</name>
<description>
LittleProxy is a high performance HTTP proxy written in Java and using the Netty networking framework.
Expand Down
6 changes: 6 additions & 0 deletions scripts/run_circle_tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

if [ "$CIRCLE_TAG" == "" ]
then
mvn test -T2C
fi