diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df0f11c7..4001a17d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -26,7 +26,7 @@ jobs: | |||
26 | with: | 26 | with: |
27 | fetch-depth: 0 | 27 | fetch-depth: 0 |
28 | 28 | ||
29 | - name: Confgure Visual Studio | 29 | - name: Configure Visual Studio |
30 | shell: cmd | 30 | shell: cmd |
31 | run: ./src/vs_config.cmd | 31 | run: ./src/vs_config.cmd |
32 | 32 | ||
@@ -44,9 +44,13 @@ jobs: | |||
44 | name: artifacts | 44 | name: artifacts |
45 | path: build/artifacts/ | 45 | path: build/artifacts/ |
46 | 46 | ||
47 | - name: Create Zips | 47 | - name: Validate Test Results |
48 | shell: cmd | 48 | shell: cmd |
49 | run: ./src/create_zips.cmd | 49 | run: 7z a build\testresults.zip @src\testresultfilelist.txt |
50 | |||
51 | - name: Zip temp logs | ||
52 | shell: cmd | ||
53 | run: 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" | ||
50 | if: always() | 54 | if: always() |
51 | 55 | ||
52 | - name: Save logs | 56 | - name: Save logs |