Skip to content

Commit cfa2a96

Browse files
authored
feat: refactor ci (#163)
1 parent 6d8954e commit cfa2a96

File tree

4 files changed

+12
-31
lines changed

4 files changed

+12
-31
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- run: npx envinfo
1515
- run: npm i -g n && n latest
1616
- run: yarn
17-
- run: yarn release --linux --win
17+
- run: yarn release --linux
1818
- save_cache:
1919
paths:
2020
- node_modules

.travis.yml

-26
This file was deleted.

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# electron-devdocs
22

33
[![CircleCI](https://circleci.com/gh/gengjiawen/electron-devdocs.svg?style=svg)](https://circleci.com/gh/gengjiawen/electron-devdocs)
4-
[![Build Status](https://travis-ci.org/gengjiawen/electron-devdocs.svg?branch=master)](https://travis-ci.org/gengjiawen/electron-devdocs)
54
[![Build status](https://ci.appveyor.com/api/projects/status/1akkt6sjlnwwa7tu/branch/master?svg=true)](https://ci.appveyor.com/project/gengjiawen/electron-devdocs/branch/master)
65
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/gengjiawen/electron-devdocs)
76

appveyor.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
version: 1.0.{build}
22
image:
33
- Visual Studio 2019
4+
- macOS
45

56
platform:
67
- x64
8+
for:
9+
-
10+
matrix:
11+
only:
12+
- image: Visual Studio 2019
13+
install:
14+
- ps: Install-Product node stable x64
15+
- yarn
716

817
init:
918
- git config --global core.autocrlf input
1019

1120
install:
12-
- ps: Install-Product node stable x64
13-
- yarn install
21+
- npm i -g yarn && yarn
1422

1523
build_script:
1624
- npx envinfo
17-
- yarn run electron-build
25+
- yarn release
1826

1927
test: off

0 commit comments

Comments
 (0)