From e22220b04385d51f941d86093d4d534f2ac3e3f3 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Tue, 17 Jul 2018 13:29:45 -0700 Subject: [PATCH 1/2] Regenerate artifacts. --- .appveyor.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index a7fbefba71c..d5b32074948 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,10 +4,9 @@ # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # ############################################################################### -version: 3.0.0.{build}-{branch} +version: 3.4.0.{build}-{branch} -os: - - Visual Studio 2013 +image: Visual Studio 2013 clone_folder: c:\git\libbitcoin skip_tags: true @@ -47,11 +46,14 @@ before_build: | Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } ` | Select UninstallString).UninstallString } - Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64)..." -ForegroundColor Yellow; - "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; + Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005..." -ForegroundColor Yellow; + "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; & $env:temp\uninstall.cmd; - Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86)..." -Foreground Yellow; - "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; + Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501..." -ForegroundColor Yellow; + "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; + & $env:temp\uninstall.cmd; + Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501..." -Foreground Yellow; + "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; & $env:temp\uninstall.cmd; Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow; $CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME"; From 79780916f83fb42a1a614e938e50ff3a58488ce9 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Tue, 17 Jul 2018 13:39:42 -0700 Subject: [PATCH 2/2] Remove non-hidden appveyor.yml --- appveyor.yml | 86 ---------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index a7fbefba71c..00000000000 --- a/appveyor.yml +++ /dev/null @@ -1,86 +0,0 @@ -############################################################################### -# Copyright (c) 2014-2015 libbitcoin developers (see COPYING). -# -# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY -# -############################################################################### -version: 3.0.0.{build}-{branch} - -os: - - Visual Studio 2013 - -clone_folder: c:\git\libbitcoin -skip_tags: true - -environment: - matrix: - - configuration: StaticDebug - platform: x64 - BOOST_UNIT_TEST_OPTIONS: "--run_test=* --show_progress=no --detect_memory_leak=0 --report_level=no --build_info=yes" - - configuration: StaticRelease - platform: x64 - BOOST_UNIT_TEST_OPTIONS: "--run_test=* --show_progress=no --detect_memory_leak=0 --report_level=no --build_info=yes" - - configuration: StaticDebug - platform: Win32 - BOOST_UNIT_TEST_OPTIONS: "--run_test=* --show_progress=no --detect_memory_leak=0 --report_level=no --build_info=yes" - - configuration: StaticRelease - platform: Win32 - BOOST_UNIT_TEST_OPTIONS: "--run_test=* --show_progress=no --detect_memory_leak=0 --report_level=no --build_info=yes" - -matrix: - fast_finish: true - -init: - - git config --global core.autocrlf true - -before_build: - - ps: >- - $BASE_KEY = "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"; - $WOW_KEY = "HKLM:SOFTWARE\wow6432node\Microsoft\Windows\CurrentVersion\Uninstall"; - $CTP_URL = "https://download.microsoft.com/download/3/C/2/3C271B79-6354-4B66-9014-C6CEBC14C5C4/vc_CompilerCTP.Nov2013.exe"; - $CTP_FILENAME = "vc_CompilerCTP.Nov2013.exe"; - $INSTALL_LOG_PATH = "c:\users\appveyor\install-log.txt"; - function GetUninstallString($product_name) { - $x64_items = @(Get-ChildItem $BASE_KEY); - ($x64_items + @(Get-ChildItem $WOW_KEY) ` - | ForEach-Object { Get-ItemProperty Microsoft.PowerShell.Core\Registry::$_ } ` - | Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } ` - | Select UninstallString).UninstallString - } - Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64)..." -ForegroundColor Yellow; - "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; - & $env:temp\uninstall.cmd; - Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86)..." -Foreground Yellow; - "$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII; - & $env:temp\uninstall.cmd; - Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow; - $CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME"; - (New-Object Net.WebClient).DownloadFile($CTP_URL, $CTP_INSTALLER_PATH); - Write-Host "Installing CTP Compiler..." -ForegroundColor Yellow; - cmd /c start /wait $CTP_INSTALLER_PATH /install /quiet /norestart /log $INSTALL_LOG_PATH; - Write-Host "CTP Compiler Installation Complete." -ForegroundColor Green; - -build_script: - - c:\git\libbitcoin\build.cmd c:\git %PLATFORM% %CONFIGURATION% vs2013 - - cd /d %APPVEYOR_BUILD_FOLDER% - -test_script: - - ps: >- - Write-Host "Locating test executables..." -ForegroundColor Yellow; - $BC_TEST_EXES = @(Get-ChildItem -Path "$env:APPVEYOR_BUILD_FOLDER\bin" -recurse | Where-Object { $_.Name -eq "$env:APPVEYOR_PROJECT_NAME-test.exe" }); - If ($BC_TEST_EXES.Count -ne 1) { - Write-Host "Failure, invalid count of test executables." -ForegroundColor Red; - exit 1; - } - Write-Host "Found single test executable: " $BC_TEST_EXES.FullName -ForegroundColor Green; - $BC_TEST_SINGLETON = $BC_TEST_EXES.FullName; - Write-Host "Executing $BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS" -ForegroundColor Yellow; - try { - Invoke-Expression "$BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS" - } - catch { - $ERR = $_; - Write-Host "Test execution failure: " $ERR -ForegroundColor Red; - exit $ERR; - } - Write-Host "Test execution complete." -ForegroundColor Green;