diff options
author | Rob Mensching <rob@firegiant.com> | 2022-01-03 09:38:09 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-01-03 12:42:39 -0800 |
commit | 612449eb63139d05df02dcdba9f6ade113e9c80a (patch) | |
tree | 8485e4bd852929f748c1fa50da1e5bbec8b88230 /.github | |
parent | 4bd0a8a27c2f726de9d132d04ebda431f542fbb5 (diff) | |
download | wix-612449eb63139d05df02dcdba9f6ade113e9c80a.tar.gz wix-612449eb63139d05df02dcdba9f6ade113e9c80a.tar.bz2 wix-612449eb63139d05df02dcdba9f6ade113e9c80a.zip |
Validate test results before uploading build artifacts
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4001a17d..2eeedec8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -38,16 +38,16 @@ jobs: | |||
38 | SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} | 38 | SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} |
39 | SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} | 39 | SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} |
40 | 40 | ||
41 | - name: Validate test results | ||
42 | shell: cmd | ||
43 | run: 7z a build\testresults.zip @src\testresultfilelist.txt | ||
44 | |||
41 | - name: Save build | 45 | - name: Save build |
42 | uses: actions/upload-artifact@v2 | 46 | uses: actions/upload-artifact@v2 |
43 | with: | 47 | with: |
44 | name: artifacts | 48 | name: artifacts |
45 | path: build/artifacts/ | 49 | path: build/artifacts/ |
46 | 50 | ||
47 | - name: Validate Test Results | ||
48 | shell: cmd | ||
49 | run: 7z a build\testresults.zip @src\testresultfilelist.txt | ||
50 | |||
51 | - name: Zip temp logs | 51 | - name: Zip temp logs |
52 | shell: cmd | 52 | shell: cmd |
53 | run: 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" | 53 | run: 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" |