lukka / run-cmake

GitHub Action to build C++ applications with CMake (CMakePresets.json), Ninja and vcpkg on GitHub.
MIT License
171 stars 19 forks source link

Expand-Archive : is not a supported archive file format. #97

Closed KironBikash closed 1 year ago

KironBikash commented 1 year ago

I am getting this error while trying to make a cmake update action. How can I get rid of it? in my YAML file I am using the following configurations. Thank you in advance.

env: CONFIGURATION: Debug jobs: Build: runs-on: [ self-hosted, Windows, Build ] timeout-minutes: 30 strategy: matrix: TARGET: [ 'Windows' ] MSVC_TOOLSET_VERSION:

  • 14.00
  • 14.16
  • 14.29
  • 14.30
  • 14.31
  • 14.32 steps:
    • uses: actions/checkout@v3.1.0
    • uses: ilammy/msvc-dev-cmd@v1.12.0 with: arch: x64 toolset: $ {{ matrix.MSVC_TOOLSET_VERSION }}
    • uses: lukka/get-cmake@v3.23.0
    • uses: lukka/run-cmake@v10.0 with: configurePreset: $ {{ matrix.TARGET }}-${{ env.CONFIGURATION }} buildPreset: $ {{ matrix.TARGET }}-${{ env.CONFIGURATION }}

Error:

C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe -NoLogo -Sta -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command "$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.FileSystem } catch { } ; if ((Get-Command -Name Expand-Archive -Module Microsoft.PowerShell.Archive -ErrorAction Ignore)) { Expand-Archive -LiteralPath 'C:\actions-runner_work_temp\834f221e-b5a4-418c-aa96-71d4f1cbe900' -DestinationPath 'C:\actions-runner_work_temp-1001380349' -Force } else {[System.IO.Compression.ZipFile]::ExtractToDirectory('C:\actions-runner_work_temp\834f221e-b5a4-418c-aa96-71d4f1cbe900', 'C:\actions-runner_work_temp-1001380349', $true) }"

48 Expand-Archive : is not a supported archive file format. The only supported archive file format is .zip. 49 At line:1 char:210 50 + ... Ignore)) { Expand-Archive -LiteralPath 'C:\actions-runner_work_tem ... 51 + ~~~~~~~~~~~~~ 52 + CategoryInfo : InvalidArgument: (:String) [Expand-Archive], IOException 53 + FullyQualifiedErrorId : NotSupportedArchiveFileExtension,Expand-Archive

lukka commented 1 year ago

@KironBikash could you provide a link to the workflow that is reproducing the problem?

lukka commented 1 year ago

@KironBikash let me know if this is still a problem!