Skip to content

Commit

Permalink
Attempt to install p7zip in CI too
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j committed Dec 30, 2024
1 parent 7f0aeac commit 5790b5e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build_Windows_MINGW64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,22 @@ jobs:
with:
submodules: true

# TODO(Martin): p7zip should be 7zip but MINGW64 hasn't updated at the time of writing, try switching it later
- name: Read Package List
id: read_packages
run: |
$packages = Get-Content extra/msyspac.txt -Raw | Out-String
$packages = $packages -replace "`r`n", " " -replace "`n", " "
$packages = $packages.Trim()
$packages = $packages.Trim() + " p7zip"
echo "packages=$packages" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8
# TODO(Martin): p7zip should be 7zip but MINGW64 hasn't updated at the time of writing, try switching it later
- name: Set up MSYS2 MinGW-W64
uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: true
install: ${{ env.packages }}
# ca-certificates
# p7zip
# mingw-w64-x86_64-python-zeroconf
# mingw-w64-x86_64-zlib

Expand Down

0 comments on commit 5790b5e

Please sign in to comment.