Skip to content

Commit

Permalink
Use maven wrapper in GH workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGeRe committed Sep 24, 2024
1 parent be67dc3 commit 39d7811
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
distribution: 'zulu'
java-version: '11'
- run: |
mvn clean install
./mvnw clean install
cd tools/ && ./build_docker.sh && cd ..
sed -i 's/descartesresearch\///g' examples/docker/docker-compose_default.yaml
docker-compose -f examples/docker/docker-compose_default.yaml up -d
Expand All @@ -34,7 +34,7 @@ jobs:
distribution: 'zulu'
java-version: '11'
- run: |
mvn clean install
./mvnw clean install
cd tools/ && ./build_docker.sh && cd ..
sed -i 's/descartesresearch\///g' examples/docker/docker-compose_https.yaml
docker-compose -f examples/docker/docker-compose_https.yaml up -d
Expand All @@ -51,7 +51,7 @@ jobs:
distribution: 'zulu'
java-version: '11'
- run: |
mvn clean install
./mvnw clean install
cd tools/ && ./build_docker.sh && cd ..
sed -i 's/descartesresearch\///g' examples/docker/docker-compose_kieker.yaml
sed -i 's/descartesresearch\///g' examples/docker/docker-compose_rabbitmq.yaml
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- run: |
mvn clean install
./mvnw clean install
cd tools/ && ./build_docker.sh && cd ..
sed -i 's/descartesresearch\///g' examples/docker/docker-compose_default.yaml
docker-compose -f examples/docker/docker-compose_default.yaml up -d
Expand All @@ -94,7 +94,7 @@ jobs:
distribution: 'zulu'
java-version: '11'
- run: |
mvn clean install -DskipTests
./mvnw clean install -DskipTests
GIT_BRANCH=${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}}
echo "GIT_BRANCH=${GIT_BRANCH}"
echo "GIT_BRANCH=${GIT_BRANCH}" >> ${GITHUB_ENV}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepareRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
distribution: 'zulu'
java-version: '11'
- run: |
mvn clean install -DskipTests
./mvnw clean install -DskipTests
VERSION=$(grep -o ".\..\.." <<< "${{ github.event.milestone.title }}")
echo "VERSION=${VERSION}" >> ${GITHUB_ENV}
echo "Version:_${VERSION}_"
Expand Down

0 comments on commit 39d7811

Please sign in to comment.