Skip to content

Commit

Permalink
github actions msbuild - Fix bad yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
thepowersgang committed Sep 2, 2023
1 parent 5136600 commit 53581ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,13 @@ jobs:
path: vsproject/x64/${{env.BUILD_CONFIGURATION}}
- name: Download rust source
shell: powershell
run: Invoke-WebRequest -Method Get -Uri https://static.rust-lang.org/dist/rustc-${{matrix.rustver}}.0-src.tar.gz -UseBasicParsing
run: |
Invoke-WebRequest -Method Get -Uri https://static.rust-lang.org/dist/rustc-${{matrix.rustver}}.0-src.tar.gz -UseBasicParsing
# Chain 7z invocations to extract the tarball directly - see https://superuser.com/a/546694
- name: Extract rust source
shell: cmd
run: "c:\Program Files\7-Zip\7z.exe" x rustc-1.54.0-src.tar.gz -so | "c:\Program Files\7-Zip\7z.exe" x -aoa -si -ttar
run: |
"c:\Program Files\7-Zip\7z.exe" x rustc-1.54.0-src.tar.gz -so | "c:\Program Files\7-Zip\7z.exe" x -aoa -si -ttar
- name: Build
run: |
cd vsproject
Expand Down

0 comments on commit 53581ac

Please sign in to comment.