Skip to content

Commit

Permalink
build: replace AppVeyor with CircleCI's Windows support (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Feb 19, 2020
1 parent 170d05d commit c93997d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 22 deletions.
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ steps-test: &steps-test
- run: npm test


version: 2
version: 2.1
orbs:
win: circleci/windows@2.4.0
jobs:
test-linux-8:
docker:
Expand All @@ -36,6 +38,11 @@ jobs:
macos:
xcode: "10.2.0"
<<: *steps-test
test-windows:
executor:
name: win/default
shell: bash.exe
<<: *steps-test

release:
docker:
Expand All @@ -53,11 +60,13 @@ workflows:
- test-linux-8
- test-linux-10
- test-mac
- test-windows
- release:
requires:
- test-linux-8
- test-linux-10
- test-mac
- test-windows
filters:
branches:
only:
Expand Down
21 changes: 0 additions & 21 deletions appveyor.yml

This file was deleted.

0 comments on commit c93997d

Please sign in to comment.