We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc4afcd + 1c1bd81 commit ca8361fCopy full SHA for ca8361f
1 file changed
.github/workflows/e2e-integration-test.yml
@@ -60,7 +60,20 @@ jobs:
60
- run: chmod a+x ./lightpanda
61
62
- name: run end to end integration tests
63
+ continue-on-error: true
64
run: |
65
./lightpanda serve --log-level error & echo $! > LPD.pid
- go run integration/main.go
66
+ go run integration/main.go |tee result.log
67
kill `cat LPD.pid`
68
+
69
+ - name: Send result to slack
70
+ uses: slackapi/slack-github-action@v3.0.1
71
+ with:
72
+ errors: true
73
+ method: files.uploadV2
74
+ token: ${{ secrets.CI_SLACK_BOT_TOKEN }}
75
+ payload: |
76
+ channel_id: ${{ vars.E2E_SLACK_CHANNEL_ID }}
77
+ initial_comment: "Last e2e integration tests"
78
+ file: "./result.log"
79
+ filename: "e2e-integration-${{ github.sha }}.txt"
0 commit comments