From adbc9b7ccae2292c3bda4935da79f3c7f80a9145 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Thu, 10 Dec 2020 11:29:51 -0600 Subject: [PATCH] Use github actions for windows x86 https://github.com/actions/setup-node/pull/194 --- .github/workflows/CI.yml | 7 ++++++- appveyor.yml | 25 ++++--------------------- 2 files changed, 10 insertions(+), 22 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4cff15ffd..5bd0d4dbc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,13 +19,18 @@ jobs: - 10 - 12 - 14 + include: + - os: windows-2016 + node_version: 12 + node_arch: x86 steps: - uses: actions/checkout@v2 - name: Install Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v2-beta with: node-version: ${{ matrix.node_version }} + architecture: ${{ matrix.node_arch }} - name: Install npm run: npm install -g npm diff --git a/appveyor.yml b/appveyor.yml index b442f7ea3..795da41c6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,23 +1,6 @@ -# Used only to test x86 - -shallow_clone: true -version: "{build}" - -image: Visual Studio 2015 - -platform: - - x86 - -environment: - nodejs_version: "10.20.1" - -install: - - ps: Install-Product node $env:nodejs_version $env:platform - - npm install -g npm - - npm ci - +# empty appveyor build: off -test: off - -deploy: off +branches: + only: + - non-existing