diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2022-01-03 09:45:42 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2022-01-03 10:23:15 -0600 |
| commit | 4bd0a8a27c2f726de9d132d04ebda431f542fbb5 (patch) | |
| tree | 1308d78ff732018c63dfdce4cf8bafec43ad2c9e | |
| parent | bceff47b867e2bd4086da2013fa2a0b9364b27b2 (diff) | |
| download | wix-4bd0a8a27c2f726de9d132d04ebda431f542fbb5.tar.gz wix-4bd0a8a27c2f726de9d132d04ebda431f542fbb5.tar.bz2 wix-4bd0a8a27c2f726de9d132d04ebda431f542fbb5.zip | |
Replace create_zips.cmd with Github Action steps.
| -rw-r--r-- | .github/workflows/build.yml | 10 | ||||
| -rw-r--r-- | src/create_zips.cmd | 2 |
2 files changed, 7 insertions, 5 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 |
diff --git a/src/create_zips.cmd b/src/create_zips.cmd deleted file mode 100644 index ed9bbcf9..00000000 --- a/src/create_zips.cmd +++ /dev/null | |||
| @@ -1,2 +0,0 @@ | |||
| 1 | 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" | ||
| 2 | 7z a "build\testresults.zip" @src\testresultfilelist.txt | ||
