aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-01-03 09:45:42 -0600
committerSean Hall <r.sean.hall@gmail.com>2022-01-03 10:23:15 -0600
commit4bd0a8a27c2f726de9d132d04ebda431f542fbb5 (patch)
tree1308d78ff732018c63dfdce4cf8bafec43ad2c9e /.github
parentbceff47b867e2bd4086da2013fa2a0b9364b27b2 (diff)
downloadwix-4bd0a8a27c2f726de9d132d04ebda431f542fbb5.tar.gz
wix-4bd0a8a27c2f726de9d132d04ebda431f542fbb5.tar.bz2
wix-4bd0a8a27c2f726de9d132d04ebda431f542fbb5.zip
Replace create_zips.cmd with Github Action steps.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml10
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