Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Windows path syntax...
Browse files Browse the repository at this point in the history
  • Loading branch information
nyospe committed Mar 22, 2024
1 parent db4eca5 commit add4f6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
- name: Install Cap'n Proto
run: |
curl https://capnproto.org/capnproto-c++-win32-1.0.2.zip -o capnproto.zip
7z.exe e capnproto.zip -r *.exe -o${{github.workspace}}/capnproto
Write-Output "Unpacking capnp.exe to ${{github.workspace}}/capnproto"
echo "${{github.workspace}}/capnproto" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
7z.exe e capnproto.zip -r *.exe -o${{github.workspace}}\\capnproto
Write-Output "Unpacking capnp.exe to ${{github.workspace}}\\capnproto\\"
echo "${{github.workspace}}\\capnproto" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -56,7 +56,7 @@ jobs:

- name: Build
run: |
Write-Output "building with PATH=$env:PATH"
capnp.exe --version
cargo build --workspace --release
- name: Test
Expand Down

0 comments on commit add4f6a

Please sign in to comment.