From 89bd8cff459759f0cc1f88a38748a8017a795d05 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 22 Mar 2019 09:49:00 -0400 Subject: [PATCH] switch to ubuntu builds --- appveyor.yml | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5f246eee..4f2366b5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,30 +1,16 @@ image: -- Visual Studio 2017 +- Ubuntu1804 branches: except: - gh-pages -init: -- ps: | - if($isWindows -and $env:DEBUG_RDP -eq "true") { - iex ((new-object net.webclient).DownloadString(` - 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) - } -- ps: Install-Product node 10 +stack: node 10 before_build: -- cmd: node --version -- cmd: npm --version +- node --version +- npm --version build_script: -- cmd: npm install -- cmd: npm run deploy:ci - -on_finish: - - ps: | - if($isWindows -and $env:DEBUG_RDP -eq "true") { - $blockRdp = $true - iex ((new-object net.webclient).DownloadString(` - 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) - } +- npm install +- npm run deploy:ci