-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from newrelic/develop
Release CSEC Java Agent Version 1.1.2
- Loading branch information
Showing
43 changed files
with
836 additions
and
111 deletions.
There are no files selected for viewing
This file contains 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 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 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,10 +1,45 @@ | ||
name: Instrumentation unit tests | ||
description: Run all the instrumentation unit test. | ||
inputs: | ||
java-version: | ||
description: 'The JVM Version to use' | ||
required: true | ||
default: '8' | ||
|
||
runs: | ||
using: composite | ||
|
||
steps: | ||
- name: Run instrumentation unit tests | ||
- name: Run instrumentation unit tests on Java ${{ inputs.java-version }} attempt 1 | ||
id: run_tests_1 | ||
shell: bash | ||
run: ./gradlew ${GRADLE_OPTIONS} --info test | ||
continue-on-error: true | ||
run: | | ||
echo "Running attempt 1" | ||
./gradlew ${GRADLE_OPTIONS} --info test -Ptest${{ inputs.java-version }} --continue | ||
- name: Run instrumentation unit tests on Java ${{ inputs.java-version }} attempt 2 | ||
id: run_tests_2 | ||
shell: bash | ||
continue-on-error: true | ||
if: steps.run_tests_1.outcome == 'failure' | ||
run: | | ||
echo "Running attempt 2" | ||
./gradlew ${GRADLE_OPTIONS} --info test -Ptest${{ inputs.java-version }} --continue | ||
- name: Run instrumentation unit tests on Java ${{ inputs.java-version }} attempt 3 | ||
id: run_tests_3 | ||
shell: bash | ||
continue-on-error: true | ||
if: steps.run_tests_2.outcome == 'failure' | ||
run: | | ||
echo "Running attempt 3" | ||
./gradlew ${GRADLE_OPTIONS} --info test -Ptest${{ inputs.java-version }} --continue | ||
- name: Run instrumentation unit tests on Java ${{ inputs.java-version }} attempt 4 | ||
id: run_tests_4 | ||
shell: bash | ||
if: steps.run_tests_3.outcome == 'failure' | ||
run: | | ||
echo "Running attempt 4" | ||
./gradlew ${GRADLE_OPTIONS} --info test -Ptest${{ inputs.java-version }} --continue |
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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.