From 6685905c2be3bae97cc1d94ae62c69198131cf53 Mon Sep 17 00:00:00 2001 From: Almenon Date: Fri, 12 Oct 2018 18:32:29 -0700 Subject: [PATCH 1/3] #159 trying out build matrix --- appveyor.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7a831b1..55cd3ea 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,10 +8,19 @@ image: - Visual Studio 2017 - Ubuntu -stack: node 8, python 3.6 environment: - nodejs_version: "8" - + - nodejs_version: "8" + PYTHON: "C:\\Python27" + + - nodejs_version: "8" + PYTHON: "C:\\Python36-x64" + + - nodejs_version: "10" + PYTHON: "C:\\Python27" + + - nodejs_version: "10" + PYTHON: "C:\\Python36-x64" + install: - npm install @@ -32,3 +41,6 @@ notifications: skip_commits: files: - '**/*.md' + +matrix: + fast_finish: true From 310e8a85c934becf6ea7245e202ddc3b3700dbcd Mon Sep 17 00:00:00 2001 From: Almenon Date: Fri, 12 Oct 2018 18:55:04 -0700 Subject: [PATCH 2/3] forgot the matrix --- appveyor.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 55cd3ea..fb6c66f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,17 +9,18 @@ image: - Ubuntu environment: - - nodejs_version: "8" - PYTHON: "C:\\Python27" + matrix: + - nodejs_version: "8" + PYTHON: "C:\\Python27" - - nodejs_version: "8" - PYTHON: "C:\\Python36-x64" + - nodejs_version: "8" + PYTHON: "C:\\Python36-x64" - - nodejs_version: "10" - PYTHON: "C:\\Python27" + - nodejs_version: "10" + PYTHON: "C:\\Python27" - - nodejs_version: "10" - PYTHON: "C:\\Python36-x64" + - nodejs_version: "10" + PYTHON: "C:\\Python36-x64" install: - npm install From 3dc2569c00dcd49e248a0f8d137d8e53b9cf207f Mon Sep 17 00:00:00 2001 From: Almenon Date: Fri, 12 Oct 2018 18:58:41 -0700 Subject: [PATCH 3/3] disabling fast finish so i can see if tests pass w/ newer version --- appveyor.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index fb6c66f..f5fc9ae 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -42,6 +42,3 @@ notifications: skip_commits: files: - '**/*.md' - -matrix: - fast_finish: true