We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 969bff1 + d081841 commit c7a2c74Copy full SHA for c7a2c74
.github/workflows/ci-build.yml
@@ -93,9 +93,10 @@ jobs:
93
94
- name: Download WasmEdge
95
run: |
96
+ $ProgressPreference = 'SilentlyContinue'
97
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"
98
Expand-Archive -LiteralPath "WasmEdge-0.14.0-windows.zip" -DestinationPath ${{ github.workspace }}
- tree ${{ github.workspace }}\WasmEdge
99
+ tree /F ${{ github.workspace }}\WasmEdge
100
101
- name: Set up Windows 10 SDK
102
uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.11
@@ -109,4 +110,4 @@ jobs:
109
110
111
- name: Test Build
112
- cargo build --release
113
+ cargo build
0 commit comments