-
Notifications
You must be signed in to change notification settings - Fork 1
Bump dependencies and adjust #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zapodot
wants to merge
18
commits into
master
Choose a base branch
from
v1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 12 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2c26ecb
1.0 snapshot
zapodot ee2c8ae
Build changes
zapodot e1279da
Build all branches
zapodot 03d36e7
Build all branches effort 2
zapodot 75b4c6f
Needed to update parent
zapodot 677c92c
Use jacoco + coveralls
zapodot 4be91ae
Bump jacoco
zapodot a6d220f
Remove unused plugins
zapodot 6d59a47
Duplicate plugin
zapodot 0693ad8
Switcharoo
zapodot 2d5445d
Add mvn build wrapper
zapodot 6bbe02e
Bump deps and adjust
zapodot 7bed93f
Use mvn build wrapper in github actions
zapodot 57ba1a5
Add cc to finish step
zapodot a6b2ff9
Move coveralls to main job
zapodot f52d37b
Separate coveralls generation from reporting
zapodot 9806417
Add debugging
zapodot 5c21a59
Update embedded-jms-junit5/src/main/java/org/zapodot/junit5/jms/inter…
zapodot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,38 +1,50 @@ | ||
| name: Build, test and deploy | ||
|
|
||
| on: [push, pull_request] | ||
| on: | ||
| push: | ||
| branches: [ '*' ] | ||
| pull_request: | ||
| branches: [ master ] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| java: [8, 11] | ||
| java: [17, 21] | ||
| name: Java ${{ matrix.java }} | ||
| env: | ||
| CC_TEST_REPORTER_ID: 47b239597faea3da257baa211d7438ff8ba9047319a2c687110f4f8e41bb07f1 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Java ${{ matrix.java }} | ||
| uses: actions/setup-java@v1 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: 'temurin' | ||
| java-version: ${{ matrix.java }} | ||
| - name: Build with Maven | ||
| run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V | ||
| - name: Cache Maven packages | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ~/.m2 | ||
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
| restore-keys: ${{ runner.os }}-m2 | ||
| - name: Build with Maven | ||
| run: mvn install --no-transfer-progress -DskipTests=true -Dmaven.javadoc.skip=true -B -V | ||
| id: mvnInstall | ||
| - name: Run tests | ||
| run: mvn test -B | ||
| run: mvn test jacoco:report-aggregate -B | ||
| id: mvnTest | ||
| - name: Record coverage | ||
| run: | | ||
| mvn clean cobertura:cobertura coveralls:report | ||
| # if: startsWith(matrix.java, 8) | ||
| # - name: Deploy to Github packages | ||
| # env: | ||
| # token: ${{ secrets.GITHUB_TOKEN }} | ||
| # packagesUrl: https://maven.pkg.github.com/zapodot | ||
| # run: | | ||
| # mvn deploy -Dregistry=$packagesUrl -Dtoken=$token | ||
| # id: deployGithubPackages | ||
| # if: startsWith(matrix.java, 11) | ||
| - name: Coveralls Parallel | ||
| uses: coverallsapp/github-action@v2 | ||
| with: | ||
| flag-name: run-${{ join(matrix.*, '-') }} | ||
| parallel: true | ||
| finish: | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Coveralls Finished | ||
| uses: coverallsapp/github-action@v2 | ||
| with: | ||
| parallel-finished: true | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
| wrapperVersion=3.3.2 | ||
| distributionType=only-script | ||
| distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.