proxmark3/appveyor.yml

321 lines
12 KiB
YAML
Raw Normal View History

version: 3.0.1.{build}
2020-06-16 20:43:24 +08:00
image: Visual Studio 2019
2020-09-09 10:07:04 +08:00
clone_folder: C:\ProxSpace\pm3\proxmark
cache:
2020-10-05 07:05:41 +08:00
- C:\cache -> appveyor.yml
2020-09-09 10:07:04 +08:00
environment:
proxspace_url: https://github.com/Gator96100/ProxSpace/archive/master.zip
proxspace_zip_file: \proxspace.zip
proxspace_zip_folder_name: ProxSpace-*
proxspace_path: \ProxSpace
proxspace_home_path: \ProxSpace\pm3
2020-09-19 01:13:13 +08:00
wsl_git_path: C:\proxmark
2020-10-05 05:41:04 +08:00
APPVEYOR_SAVE_CACHE_ON_ERROR: true
2020-09-09 10:07:04 +08:00
init:
- ps: >-
$psversiontable
#Get-ChildItem Env:
$releasename=""
$env:APPVEYOR_REPO_COMMIT_SHORT = $env:APPVEYOR_REPO_COMMIT.Substring(0, 8)
if ($env:appveyor_repo_tag -match "true"){
$releasename=$env:APPVEYOR_REPO_TAG_NAME + "/"
}
$releasename+=$env:APPVEYOR_BUILD_VERSION + " [" + $env:APPVEYOR_REPO_COMMIT_SHORT + "]"
Write-Host "repository: $env:appveyor_repo_name branch:$env:APPVEYOR_REPO_BRANCH release: $releasename" -ForegroundColor Yellow
Add-AppveyorMessage -Message "[$env:APPVEYOR_REPO_COMMIT_SHORT]$env:appveyor_repo_name($env:APPVEYOR_REPO_BRANCH)" -Category Information -Details "repository: $env:appveyor_repo_name branch: $env:APPVEYOR_REPO_BRANCH release: $releasename"
2020-03-12 18:42:50 +08:00
# iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
clone_script:
- ps: >-
2020-09-09 10:07:04 +08:00
Function ExecUpdate($Text, $firstStart) {
2020-09-18 23:14:59 +08:00
Write-Host "$Text"
$PSjob = Start-Job -Name PSInstall -ScriptBlock {
cd $env:proxspace_path
./runme64.bat -c "exit"
}
2020-09-09 10:07:04 +08:00
$StartTime=[System.Environment]::TickCount
Start-Sleep -s 10
while($true) {
if ($PSjob.State -eq 'Completed') {
2020-09-18 23:14:59 +08:00
Write-Host "$Text" -NoNewLine
2020-09-09 10:07:04 +08:00
Write-Host "[ OK ]" -ForegroundColor Green
break
}
if ($PSjob.State -eq 'Failed') {
Write-Host "$Text" -NoNewLine
Write-Host "[ Failed ]" -ForegroundColor Red
break
}
2020-09-09 10:07:04 +08:00
if ($firstStart -And (Test-Path "$env:proxspace_path\msys2\etc\pacman.conf.pacnew")) {
Start-Sleep -s 5
Stop-Job -Job $PSjob
2020-09-09 10:07:04 +08:00
Start-Sleep -s 5
2020-09-18 23:14:59 +08:00
Write-Host "$Text" -NoNewLine
2020-09-09 10:07:04 +08:00
Write-Host "Exit by pacman.conf" -ForegroundColor Green
break
}
if ([System.Environment]::TickCount-$StartTime -gt 1000000) {
Stop-Job -Job $PSjob
2020-09-18 23:14:59 +08:00
Write-Host "$Text" -NoNewLine
2020-09-09 10:07:04 +08:00
Write-host "Exit by timeout" -ForegroundColor Yellow
break
}
Start-Sleep -s 5
Receive-Job -Job $WSLjob
2020-09-09 10:07:04 +08:00
}
2020-10-05 06:18:07 +08:00
Receive-Job -Wait -Job $PSjob
2020-10-05 04:51:01 +08:00
}
$WSLjob = Start-Job -Name WSLInstall -ScriptBlock {
Function WSLExec($Text, $Cmd) {
Write-Host "$Text"
wsl -- bash -c $Cmd
2020-09-18 22:47:24 +08:00
Write-Host "$Text" -NoNewLine
Write-Host "[ OK ]" -ForegroundColor Green
}
$WSLInstallTime=[System.Environment]::TickCount
WSLExec "WSL update..." "sudo apt-get update 1>/dev/null"
WSLExec "WSL upgrade..." "sudo apt-get upgrade -y 1>/dev/null"
WSLExec "WSL cleanup..." "sudo apt-get auto-remove -y 1>/dev/null"
WSLExec "WSL install..." "sudo apt-get -y install --reinstall --no-install-recommends git ca-certificates build-essential pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev libbz2-dev qtbase5-dev cmake 1>/dev/null"
WSLExec "WSL QT fix..." "sudo strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5"
Add-AppveyorMessage -Message "WSL setup took $(([System.Environment]::TickCount-$WSLInstallTime) / 1000) sec" -Category Information
}
2020-09-19 00:00:16 +08:00
Function GitClone($Text, $Folder) {
Write-Host "$Text" -NoNewLine
if(-not $env:appveyor_pull_request_number) {
git clone -q --branch=$env:appveyor_repo_branch https://github.com/$env:appveyor_repo_name.git $Folder
cd $Folder
git checkout -qf $env:appveyor_repo_commit
} else {
git clone -q https://github.com/$env:appveyor_repo_name.git $Folder
cd $Folder
git fetch -q origin +refs/pull/$env:appveyor_pull_request_number/merge:
git checkout -qf FETCH_HEAD
}
Write-Host "[ OK ]" -ForegroundColor Green
}
Write-Host "ProxSpace: Removing folder..." -NoNewLine
2020-09-18 05:27:20 +08:00
$PSInstallTime=[System.Environment]::TickCount
cd \
Remove-Item -Recurse -Force -Path $env:proxspace_path -ErrorAction SilentlyContinue
Write-Host "[ OK ]" -ForegroundColor Green
2020-09-19 00:00:16 +08:00
Write-Host "ProxSpace: downloading..." -NoNewLine
2020-09-09 10:07:04 +08:00
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest "$env:proxspace_url" -outfile "$env:proxspace_zip_file"
2020-02-04 06:14:09 +08:00
Write-Host "[ OK ]" -ForegroundColor Green
2020-09-09 10:07:04 +08:00
Receive-Job -Job $WSLjob
2020-09-19 00:00:16 +08:00
Write-Host "ProxSpace: extracting..." -NoNewLine
2020-09-09 10:07:04 +08:00
Expand-Archive -LiteralPath "$env:proxspace_zip_file" -DestinationPath "\"
Remove-Item "$env:proxspace_zip_file"
2020-08-18 05:42:01 +08:00
Write-Host "[ OK ]" -ForegroundColor Green
2020-09-09 10:07:04 +08:00
Receive-Job -Job $WSLjob
2020-09-19 00:00:16 +08:00
Write-Host "ProxSpace: renaming folder..." -NoNewLine
2020-09-09 10:07:04 +08:00
Get-ChildItem -Path "\$env:proxspace_zip_folder_name" | Rename-Item -NewName (Split-Path $env:proxspace_path -Leaf)
Write-Host "[ OK ]" -ForegroundColor Gree
Write-Host "ProxSpace: move cache..." -NoNewLine
2020-10-05 06:31:45 +08:00
Copy-Item -Path "C:\cache\*" -Destination "$env:proxspace_path\msys2\var\cache\pacman\pkg" -Recurse -Force -ErrorAction SilentlyContinue
2020-09-09 10:07:04 +08:00
Write-Host "[ OK ]" -ForegroundColor Gree
ExecUpdate "ProxSpace: initial msys2 startup..." $true
2020-09-09 10:07:04 +08:00
ExecUpdate "ProxSpace: installing required packages..." $false
2020-09-09 10:07:04 +08:00
$psversion = (Select-String -Pattern 'PSVERSION=' -SimpleMatch -Path "$env:proxspace_path\msys2\ps\09-proxspace_setup.post").Line.Split("""")[1]
Write-Host "ProxSpace version: $psversion" -ForegroundColor Yellow
2020-09-18 05:27:20 +08:00
Add-AppveyorMessage -Message "ProxSpace download and update took $(([System.Environment]::TickCount-$PSInstallTime) / 1000) sec" -Category Information
2020-09-19 00:00:16 +08:00
GitClone "ProxSpace: Cloning repository <$env:appveyor_repo_name> to $env:appveyor_build_folder ..." $env:appveyor_build_folder
2020-06-16 20:43:24 +08:00
2020-09-19 00:00:16 +08:00
GitClone "WSL: Cloning repository <$env:appveyor_repo_name> to $env:wsl_git_path ..." $env:wsl_git_path
2020-09-09 10:07:04 +08:00
install:
2017-04-29 19:25:27 +08:00
build_script:
- ps: >-
2018-10-26 19:59:07 +08:00
2020-09-09 10:07:04 +08:00
$pmfolder = Split-Path $env:appveyor_build_folder -Leaf
Function ExecMinGWCmd($Cmd) {
cd $env:proxspace_path
2020-09-18 05:27:20 +08:00
./runme64.bat -c "cd $pmfolder && $Cmd"
2020-09-09 10:07:04 +08:00
}
2020-09-18 05:27:20 +08:00
Function ExecCheck($Name) {
$testspass = ($LASTEXITCODE -eq 0)
2020-09-09 10:07:04 +08:00
2020-09-18 05:27:20 +08:00
$global:TestsPassed=$testspass
if ($testspass) {
Add-AppveyorTest -Name $Name -Framework NUnit -Filename $Name -Outcome Passed -Duration "$([System.Environment]::TickCount-$TestTime)"
Write-Host "$Name [ OK ]" -ForegroundColor Green
} else {
Add-AppveyorTest -Name $Name -Framework NUnit -Filename $Name -Outcome Failed -Duration "$([System.Environment]::TickCount-$TestTime)"
Write-Host "$Name [ ERROR ]" -ForegroundColor Red
throw "Tests error."
}
}
2020-09-19 00:00:16 +08:00
$WSLjob = Start-Job -Name WSLCompile -ScriptBlock {
Function ExecWSLCmd($Cmd) {
wsl -- bash -c $Cmd
}
Function ExecCheck($Name) {
$testspass = ($LASTEXITCODE -eq 0)
$global:TestsPassed=$testspass
if ($testspass) {
Add-AppveyorTest -Name $Name -Framework NUnit -Filename $Name -Outcome Passed -Duration "$([System.Environment]::TickCount-$TestTime)"
Write-Host "$Name [ OK ]" -ForegroundColor Green
} else {
Add-AppveyorTest -Name $Name -Framework NUnit -Filename $Name -Outcome Failed -Duration "$([System.Environment]::TickCount-$TestTime)"
Write-Host "$Name [ ERROR ]" -ForegroundColor Red
throw "Tests error."
}
}
#WSL: wait for installation to finish
Receive-Job -Wait -Name WSLInstall
2020-09-19 00:00:16 +08:00
#Windows Subsystem for Linux (WSL)
Write-Host "---------- WSL make ----------" -ForegroundColor Yellow
2020-09-19 00:24:19 +08:00
cd $env:wsl_git_path
2020-09-19 00:00:16 +08:00
$TestTime=[System.Environment]::TickCount
ExecWSLCmd "make clean;make V=1"
#some checks
2020-09-19 01:13:13 +08:00
if(!(Test-Path "$env:wsl_git_path\client\proxmark3")){
2020-09-19 00:00:16 +08:00
throw "Main file proxmark3 not exists."
}
ExecWSLCmd "make check"
ExecCheck "WSL make Tests"
Start-Sleep -s 2
Write-Host "---------- WSL btaddon ----------" -ForegroundColor Yellow
$TestTime=[System.Environment]::TickCount
ExecWSLCmd "make clean;make V=1 PLATFORM_EXTRAS=BTADDON"
ExecWSLCmd "make check"
ExecCheck "WSL BTaddon Tests"
Start-Sleep -s 2
Write-Host "---------- WSL make clean ----------" -ForegroundColor Yellow
ExecWSLCmd 'make clean'
Write-Host "---------- WSL cmake ----------" -ForegroundColor Yellow
$TestTime=[System.Environment]::TickCount
2020-09-19 00:24:19 +08:00
ExecWSLCmd 'mkdir -p client/build; cd client/build; cmake ..; make VERBOSE=1;'
2020-09-19 00:00:16 +08:00
Write-Host "---------- WSL cmake tests ----------" -ForegroundColor Yellow
ExecWSLCmd './tools/pm3_tests.sh --clientbin client/build/proxmark3 client'
ExecCheck "WSL cmake Tests"
}
2020-09-18 05:27:20 +08:00
#ProxSpace
2020-09-09 10:07:04 +08:00
Write-Host "ProxSpace: create new cache..." -NoNewLine
ExecMinGWCmd 'yes | pacman -Sc > /dev/null 2>&1'
2020-10-05 06:31:45 +08:00
Copy-Item -Path "$env:proxspace_path\msys2\var\cache\pacman\pkg\*" -Destination "C:\cache" -Recurse -Force
Write-Host "[ OK ]" -ForegroundColor Gree
2020-09-18 05:27:20 +08:00
Write-Host "---------- PS make ----------" -ForegroundColor Yellow
2020-09-09 10:07:04 +08:00
2020-09-18 05:27:20 +08:00
$TestTime=[System.Environment]::TickCount
2020-09-09 10:07:04 +08:00
ExecMinGWCmd "make clean;make V=1"
2020-09-09 10:07:04 +08:00
if(!(Test-Path "$env:proxspace_home_path\$pmfolder\client\proxmark3.exe")){
2020-09-18 05:27:20 +08:00
throw "Main file proxmark3.exe not exists."
}
2020-09-09 10:07:04 +08:00
ExecMinGWCmd 'make check'
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
ExecCheck "PS make Tests"
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
Write-Host "---------- PS btaddon ----------" -ForegroundColor Yellow
2020-06-16 20:43:24 +08:00
$TestTime=[System.Environment]::TickCount
2020-09-09 10:07:04 +08:00
ExecMinGWCmd 'make clean;make V=1 PLATFORM_EXTRAS=BTADDON'
2020-09-09 10:07:04 +08:00
ExecMinGWCmd 'make check'
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
ExecCheck "PS BTaddon Tests"
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
Write-Host "---------- PS make clean ----------" -ForegroundColor Yellow
2020-06-16 20:43:24 +08:00
2020-09-09 10:07:04 +08:00
ExecMinGWCmd 'make clean'
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
Write-Host "---------- PS cmake ----------" -ForegroundColor Yellow
2020-06-16 20:43:24 +08:00
2020-06-19 21:56:48 +08:00
$TestTime=[System.Environment]::TickCount
2020-09-09 10:07:04 +08:00
ExecMinGWCmd 'mkdir -p client/build; cd client/build; cmake -G""MSYS Makefiles"" ..; make VERBOSE=1;'
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
Write-Host "---------- PS cmake tests ----------" -ForegroundColor Yellow
2020-06-16 20:43:24 +08:00
2020-09-09 10:07:04 +08:00
ExecMinGWCmd './tools/pm3_tests.sh --clientbin client/build/proxmark3.exe client'
2020-06-16 20:43:24 +08:00
2020-09-18 05:27:20 +08:00
ExecCheck "PS cmake Tests"
2020-06-16 20:43:24 +08:00
2020-09-22 08:40:37 +08:00
Receive-Job -Wait -Job $WSLjob
2020-09-18 05:27:20 +08:00
2020-06-16 20:43:24 +08:00
test_script:
- ps: >-
if ($global:TestsPassed) {
Write-Host "Tests [ OK ]" -ForegroundColor Green
} else {
Write-Host "Tests [ ERROR ]" -ForegroundColor Red
throw "Tests error."
}
on_success:
- ps: Write-Host "Build success..." -ForegroundColor Green
on_failure:
- ps: Write-Host "Build error." -ForegroundColor Red
on_finish:
2020-06-16 20:43:24 +08:00
- ps: # $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))