File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : flaky-e2e
2
+ on :
3
+ schedule :
4
+ - cron : ' 30 5,17 * * *' # run this every day at 5:30 and 17:30 UTC (00:30 and 12:30 ET)
5
+ push :
6
+ branches :
7
+ - master
8
+ pull_request :
9
+ workflow_dispatch :
10
+ jobs :
11
+ e2e-tests :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v1
15
+ - uses : actions/setup-go@v2
16
+ with :
17
+ go-version : ' ~1.17'
18
+ - run : make e2e-local E2E_NODES=1 TEST='\[FLAKY\]' ARTIFACTS_DIR=./artifacts/
19
+ - name : Archive Test Artifacts # test results, failed or not, are always uploaded.
20
+ if : ${{ always() }}
21
+ uses : actions/upload-artifact@v2
22
+ with :
23
+ name : e2e-test-output-${{(github.event.pull_request.head.sha||github.sha)}}-${{ github.run_id }}
24
+ path : ${{ github.workspace }}/bin/artifacts/*
You can’t perform that action at this time.
0 commit comments