diff options
| author | Claire Wang <claire@tailscale.com> | 2023-11-21 12:16:53 -0500 |
|---|---|---|
| committer | Claire Wang <claire@tailscale.com> | 2023-11-21 12:16:53 -0500 |
| commit | 28e513f824b49bcf42506f83d8e986ff1d03756c (patch) | |
| tree | 2e5bfda739ee8a777123db4ce24e1eed82fb8110 | |
| parent | a56a7de9f2e55f0c471bee77ce7390dbcddd0bac (diff) | |
| download | tailscale-clairew/test-wrapper-file.tar.xz tailscale-clairew/test-wrapper-file.zip | |
| -rw-r--r-- | .github/workflows/test.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2fd188928..e640a687d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -128,6 +128,13 @@ jobs: uses: shogo82148/actions-goveralls@v1 with: path-to-profile: /tmp/coverage.out + - name: upload test output + uses: actions/upload-artifact@v3 + with: + name: ${{ github.job }}-${{ runner.os }}-${{ matrix.goarch }}-test-attempts.json + path: test_attempts.json + - name: remove upload test output + run: rm test_attempts.json - name: bench all run: ./tool/go test ${{matrix.buildflags}} -bench=. -benchtime=1x -run=^$ $(for x in $(git grep -l "^func Benchmark" | xargs dirname | sort | uniq); do echo "./$x"; done) env: |
