From b101bbf874bae5e94ca08a2d5c6d04019d235900 Mon Sep 17 00:00:00 2001 From: Ian Sutherland Date: Tue, 23 Oct 2018 18:42:55 -0600 Subject: [PATCH 1/2] Add Windows to Travis config --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 846a8143750..8fb9c16ec7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ --- -dist: trusty language: node_js +os: + - linux + - windows +# dist: trusty node_js: - 8 - 10 From a3a17ebdd5d15cd1a2e7334d71a73fd7084b217a Mon Sep 17 00:00:00 2001 From: Ian Sutherland Date: Tue, 23 Oct 2018 18:47:25 -0600 Subject: [PATCH 2/2] Remove AppVeyor config --- appveyor.cleanup-cache.txt | 4 --- appveyor.yml | 54 -------------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 appveyor.cleanup-cache.txt delete mode 100644 appveyor.yml diff --git a/appveyor.cleanup-cache.txt b/appveyor.cleanup-cache.txt deleted file mode 100644 index d48a91fdf35..00000000000 --- a/appveyor.cleanup-cache.txt +++ /dev/null @@ -1,4 +0,0 @@ -Edit this file to trigger a cache rebuild. -http://help.appveyor.com/discussions/questions/1310-delete-cache - ----- diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 5f5143167d6..00000000000 --- a/appveyor.yml +++ /dev/null @@ -1,54 +0,0 @@ -image: Visual Studio 2017 - -environment: - APPVEYOR_SAVE_CACHE_ON_ERROR: true - APPVEYOR_BUILD_WORKER_CLOUD: 'GCE' - matrix: - - nodejs_version: 10 - test_suite: 'simple' - - nodejs_version: 10 - test_suite: 'installs' - - nodejs_version: 10 - test_suite: 'kitchensink' - - nodejs_version: 10 - test_suite: 'kitchensink-eject' - - nodejs_version: 8 - test_suite: 'simple' - - nodejs_version: 8 - test_suite: 'installs' - - nodejs_version: 8 - test_suite: 'kitchensink' - - nodejs_version: 8 - test_suite: 'kitchensink-eject' -cache: - - '%APPDATA%\npm-cache -> appveyor.cleanup-cache.txt' - - '%LOCALAPPDATA%\Yarn\Cache -> appveyor.cleanup-cache.txt' - -clone_depth: 50 - -matrix: - fast_finish: true - allow_failures: - - test_suite: 'installs' - -platform: - - x64 - -install: - - ps: Install-Product node $env:nodejs_version $env:platform - - ps: | - (New-Object Net.WebClient).DownloadFile("https://nightly.yarnpkg.com/latest.msi", "$env:temp\yarn.msi") - cmd /c start /wait msiexec.exe /i $env:temp\yarn.msi /quiet /qn /norestart - -build: off - -skip_commits: - files: - - '**/*.md' - -test_script: - - node --version - - npm --version - - yarn --version - - yarn cache dir - - bash tasks/e2e-%test_suite%.sh