Skip to content

Commit c7a2c74

Browse files
authored
Merge pull request #173 from kevinaboos/speed_up_windows_ci
Make CI builds faster: debug builds, better powershell downloads
2 parents 969bff1 + d081841 commit c7a2c74

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-build.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,10 @@ jobs:
9393

9494
- name: Download WasmEdge
9595
run: |
96+
$ProgressPreference = 'SilentlyContinue'
9697
Invoke-WebRequest -Uri "https://github.com/WasmEdge/WasmEdge/releases/download/0.14.0/WasmEdge-0.14.0-windows.zip" -OutFile "WasmEdge-0.14.0-windows.zip"
9798
Expand-Archive -LiteralPath "WasmEdge-0.14.0-windows.zip" -DestinationPath ${{ github.workspace }}
98-
tree ${{ github.workspace }}\WasmEdge
99+
tree /F ${{ github.workspace }}\WasmEdge
99100
100101
- name: Set up Windows 10 SDK
101102
uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.11
@@ -109,4 +110,4 @@ jobs:
109110

110111
- name: Test Build
111112
run: |
112-
cargo build --release
113+
cargo build

0 commit comments

Comments
 (0)