-
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 branch 'refs/heads/main' into task/deserialisation_improvement_poc
# Conflicts: # newrelic-security-agent/src/main/java/com/newrelic/agent/security/instrumentator/dispatcher/Dispatcher.java # newrelic-security-api/src/main/java/com/newrelic/api/agent/security/schema/AgentMetaData.java # newrelic-security-api/src/main/java/com/newrelic/api/agent/security/schema/VulnerabilityCaseType.java # settings.gradle
- Loading branch information
Showing
1,092 changed files
with
59,741 additions
and
5,723 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ reports/ | |
.settings | ||
.gradle | ||
.metadata | ||
.run | ||
derbyDB | ||
pyvenv.cfg | ||
test_database* | ||
|
Oops, something went wrong.