From 812d5a88a995e8f3d1f53806cb78e6cea3a1c1bf Mon Sep 17 00:00:00 2001 From: oberrich Date: Fri, 10 Jan 2025 05:05:53 +0100 Subject: [PATCH] chore: use nushell in ci --- .github/workflows/rust.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index db1de9c..33e804b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -86,15 +86,13 @@ jobs: Add-AppxPackage $_ -Verbose } - Write-Host "Upgrading dependencies..." - winget upgrade --all --accept-source-agreements --accept-package-agreements Write-Host "Installing nushell..." # Define the URL for the MSI package $msiUrl = "https://github.com/nushell/nushell/releases/download/0.101.0/nu-0.101.0-aarch64-pc-windows-msvc.msi" $msiPath = "$env:TEMP\nu-0.101.0-aarch64-pc-windows-msvc.msi" Invoke-WebRequest -Uri $msiUrl -OutFile $msiPath - Start-Process msiexec.exe -ArgumentList "/i", $msiPath, "/quiet", "/log", "$env:TEMP\nu_install.log" -Wait + Start-Process msiexec.exe -ArgumentList "/i", $msiPath, "/qn", "/L*v", "$env:TEMP\nu_install.log" -Wait Get-Content "$env:TEMP\nu_install.log" -Tail 150 - name: Use nushell if: matrix.os == 'windows-11-preview_aarch64'