Skip to content

Commit

Permalink
Update .github/workflows/ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hattya committed Oct 12, 2024
1 parent bbe6c66 commit 5b0f74e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ jobs:
- name: Install VCSes on Windows
if: matrix.platform == 'Windows'
run: |
choco install -y fossil
aria2c -o fossil.zip 'https://www.fossil-scm.org/home/uv/fossil-w64-2.24.zip'
Expand-Archive fossil.zip $env:ProgramFiles\Fossil
echo $env:ProgramFiles\Fossil >>$env:GITHUB_PATH
$uri = 'http://darcs.net/binaries/windows/'
$uri = 'https://darcs.net/binaries/windows/'
mkdir $env:ProgramFiles\Darcs | Out-Null
Invoke-WebRequest ($uri + ((Invoke-WebRequest $uri).Links | Where-Object { $_.Href -match '\.exe$' } | Select-Object -Last 1).Href) -OutFile $env:ProgramFiles\Darcs\darcs.exe
echo $env:ProgramFiles\Darcs >>$env:GITHUB_PATH
Expand Down

0 comments on commit 5b0f74e

Please sign in to comment.