We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6e2cf commit e61aa75Copy full SHA for e61aa75
.github/workflows/ci-pull.yml
@@ -44,13 +44,18 @@ jobs:
44
run: mvn -B compiler:testCompile
45
- name: Start Server
46
run: mvn -B liberty:test-start
47
- - name: Sleep 15s
48
- run: sleep 30s
49
- shell: bash
50
- name: Run Integration Tests
51
run: mvn -B failsafe:integration-test
52
- name: Stop Server
53
run: mvn -B liberty:test-stop
54
- name: Verify Integration Test Results
55
run: mvn -B failsafe:verify
+ - name: Archive Liberty logs
+ uses: actions/upload-artifact@v3
+ with:
56
+ name: liberty-logs
57
+ path: target/liberty/wlp/usr/JakartaDataServer/logs/*.log
58
+ retention-days: 1
59
+
60
61
0 commit comments