From 2b38763595f0060049572a14ace79ec789a1d83c Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Thu, 13 Sep 2018 14:29:15 -0700 Subject: [PATCH 1/3] Add 2.0.0 to AppVeyor builds --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index cf87bdd034..03aa18c459 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ skip_tags: true branches: only: - master - - develop + - 2.0.0 environment: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Don't download unneeded packages From 9bba93101fd53587c8547a6f3cc8373cd7afd010 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Thu, 13 Sep 2018 15:59:25 -0700 Subject: [PATCH 2/3] Install libunwind dependency --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 747c8ad08b..1fc035b260 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ osx_image: xcode8.3 before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - nvm install v6.0.0; + nvm install v6.0.0 + sudo apt-get install libunwind8 fi install: - git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices From 24c7a3a7445171fa77ffd9e6fb9a8fd0c7e7cbb5 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Thu, 13 Sep 2018 16:04:23 -0700 Subject: [PATCH 3/3] Fix bash syntax --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1fc035b260..a8284f840f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,8 @@ osx_image: xcode8.3 before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - nvm install v6.0.0 - sudo apt-get install libunwind8 + nvm install v6.0.0; + sudo apt-get install libunwind8; fi install: - git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices