We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b37d283 commit 68b54d4Copy full SHA for 68b54d4
.github/workflows/coverage.yml
@@ -22,3 +22,4 @@ jobs:
22
with:
23
fail_ci_if_error: true
24
verbose: true
25
+ token: cf0cba0a-22f8-4580-89ab-4f1dec3bda6f
.github/workflows/maven.yaml
@@ -18,10 +18,17 @@ jobs:
18
- name: Checkout
19
uses: actions/checkout@v2
20
- name: Set up JDK ${{ matrix.jdk }}
21
- uses: actions/setup-java@v2
+ uses: actions/setup-java@v4
java-version: ${{ matrix.jdk }}
distribution: "adopt"
cache: "maven"
26
- name: Build with Maven
27
run: mvn -B package --file pom.xml
28
+ - name: Upload JVM crash logs
29
+ if: failure()
30
+ uses: actions/upload-artifact@v4
31
+ with:
32
+ name: jvm-crash-logs
33
+ path: /Users/runner/work/rocketmq/rocketmq/auth/hs_err_pid*.log
34
+ retention-days: 1
0 commit comments