Skip to content

Commit

Permalink
Add upgrades needed to build
Browse files Browse the repository at this point in the history
For CI system
  • Loading branch information
sclaiborne committed Feb 3, 2024
1 parent d1165c1 commit 9e21fc0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions upgrades/5AC901.IPLK-00/1.7.1.0/AS4_HW_5AC901.IPLK-00.exe
Git LFS file not shown
3 changes: 3 additions & 0 deletions upgrades/5PC900.TS17-04/2.1.0.0/AS4_HW_5PC900.TS17-04.exe
Git LFS file not shown
3 changes: 3 additions & 0 deletions upgrades/AS4_AR_C0490_APC9xxS.exe
Git LFS file not shown
11 changes: 11 additions & 0 deletions upgrades/install.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# set environment variables
$env:AS_VERSION_SHORT = 'AS411'
Get-ChildItem "$PWD" -Recurse -Filter *.exe | Foreach-Object {
Write-Output "installing $($_.Name)";
Write-Verbose "Into C:\BrAutomation\$env:AS_VERSION_SHORT";
& $_.FullName -G='C:\BrAutomation' -V="C:\BrAutomation\$env:AS_VERSION_SHORT" -R | Out-Null;
if($LASTEXITCODE -ne 0) {
Write-Error "Error installing $($_.Name). Exit code $LASTEXITCODE";
exit 1;
}
}

0 comments on commit 9e21fc0

Please sign in to comment.