-
Notifications
You must be signed in to change notification settings - Fork 871
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into messaging-convention
- Loading branch information
Showing
1,190 changed files
with
4,916 additions
and
17,261 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: [8, 11, 15] | ||
java: [ 8, 11, 15 ] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -24,11 +24,14 @@ jobs: | |
with: | ||
java-version: 11 | ||
|
||
- name: Debug space | ||
run: df -h | ||
|
||
- name: Test | ||
uses: burrunan/[email protected] | ||
with: | ||
job-id: jdk${{ matrix.java }} | ||
arguments: testJava${{ matrix.java }} --stacktrace | ||
arguments: testJava${{ matrix.java }} --stacktrace -x :smoke-tests:test | ||
|
||
- name: Aggregate test reports with ciMate | ||
if: always() | ||
|
@@ -40,3 +43,67 @@ jobs: | |
wget -q https://get.cimate.io/release/linux/cimate | ||
chmod +x cimate | ||
./cimate -v "**/TEST-*.xml" | ||
smoke-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 11 for running Gradle | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Test | ||
uses: burrunan/[email protected] | ||
with: | ||
job-id: jdk11 | ||
arguments: :smoke-tests:test | ||
|
||
- name: Aggregate test reports with ciMate | ||
if: always() | ||
continue-on-error: true | ||
env: | ||
CIMATE_PROJECT_ID: mz1jo49x | ||
CIMATE_CI_KEY: "PR / smoke" | ||
run: | | ||
wget -q https://get.cimate.io/release/linux/cimate | ||
chmod +x cimate | ||
./cimate -v "**/TEST-*.xml" | ||
setup-muzzle-matrix: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK 11 for running Gradle | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- id: set-matrix | ||
run: echo "::set-output name=matrix::{\"module\":[\"$(./gradlew -q instrumentation:listInstrumentations | xargs echo | sed 's/ /","/g')\"]}" | ||
|
||
muzzle: | ||
needs: setup-muzzle-matrix | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: ${{fromJson(needs.setup-muzzle-matrix.outputs.matrix)}} | ||
fail-fast: false | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK 11 for running Gradle | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- name: Run muzzle | ||
run: ./gradlew ${{ matrix.module }}:muzzle --no-daemon | ||
|
||
accept-pr: | ||
needs: [ test, smoke-test, muzzle ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Success | ||
run: echo Build successful |
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
13 changes: 1 addition & 12 deletions
13
...-api/src/main/java/io/opentelemetry/instrumentation/auto/api/CallDepthThreadLocalMap.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/ContextStore.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/InstrumentationContext.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/OpenTelemetrySdkAccess.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/Pair.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/SafeServiceLoader.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/SpanWithScope.java
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
13 changes: 1 addition & 12 deletions
13
auto-api/src/main/java/io/opentelemetry/instrumentation/auto/api/WeakMap.java
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.