ci: 添加ci

This commit is contained in:
muwoo 2021-08-11 11:11:34 +08:00
parent 435ecc6121
commit b900ec2032
3 changed files with 40 additions and 30 deletions

View File

@ -1,3 +1,5 @@
# Commented sections below can be used to run tests on the CI server
# https://simulatedgreg.gitbooks.io/electron-vue/content/en/testing.html#on-the-subject-of-ci-testing
osx_image: xcode8.3 osx_image: xcode8.3
sudo: required sudo: required
dist: trusty dist: trusty
@ -5,7 +7,7 @@ language: c
matrix: matrix:
include: include:
- os: osx - os: osx
- os: linux # - os: linux
env: CC=clang CXX=clang++ npm_config_clang=1 env: CC=clang CXX=clang++ npm_config_clang=1
compiler: clang compiler: clang
cache: cache:
@ -19,18 +21,20 @@ addons:
- libgnome-keyring-dev - libgnome-keyring-dev
- icnsutils - icnsutils
before_install: before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install git-lfs; fi - mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v1.2.1/git-lfs-$([
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils; fi "$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-1.2.1.tar.gz
| tar -xz -C /tmp/git-lfs --strip-components 1 && /tmp/git-lfs/git-lfs pull
install: install:
- nvm install 10 - nvm install 8.9
- curl -o- -L https://yarnpkg.com/install.sh | bash - curl -o- -L https://yarnpkg.com/install.sh | bash
- source ~/.bashrc - source ~/.bashrc
- npm install -g xvfb-maybe - npm install -g xvfb-maybe
- yarn - yarn
before_script: - cd docs
- git lfs pull - yarn
script: script:
- yarn run build - npm run release
- sh deploy.sh
branches: branches:
only: only:
- master - master

View File

@ -6,22 +6,16 @@
"license": null, "license": null,
"main": "./dist/electron/main.js", "main": "./dist/electron/main.js",
"scripts": { "scripts": {
"release": "vue-cli-service electron:build --publish always",
"build": "node .electron-vue/build.js && electron-builder", "build": "node .electron-vue/build.js && electron-builder",
"build:dir": "node .electron-vue/build.js && electron-builder --dir",
"build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js",
"build:web": "cross-env BUILD_TARGET=web node .electron-vue/build.js",
"dev": "node .electron-vue/dev-runner.js", "dev": "node .electron-vue/dev-runner.js",
"pack": "npm run pack:main && npm run pack:renderer",
"pack:main": "cross-env NODE_ENV=production webpack --progress --colors --config .electron-vue/webpack.main.config.js",
"pack:renderer": "cross-env NODE_ENV=production webpack --progress --colors --config .electron-vue/webpack.renderer.config.js",
"postinstall": "",
"rebuild": " ./node_modules/.bin/electron-rebuild", "rebuild": " ./node_modules/.bin/electron-rebuild",
"rebuild_win": "cnpm rebuild --runtime=electron --target=11.4.10 --disturl=https://atom.io/download/atom-shell --abi=85" "rebuild_win": "cnpm rebuild --runtime=electron --target=11.4.10 --disturl=https://atom.io/download/atom-shell --abi=85"
}, },
"build": { "build": {
"asar": true, "asar": true,
"productName": "rubick2", "productName": "rubick2",
"appId": "com.example.yourapp2", "appId": "com.muwoo.rubick",
"compression": "maximum", "compression": "maximum",
"directories": { "directories": {
"output": "build" "output": "build"
@ -49,10 +43,18 @@
}, },
"mac": { "mac": {
"icon": "build/icons/icon.icns", "icon": "build/icons/icon.icns",
"target": "pkg" "target": "pkg",
"extendInfo": {
"LSUIElement": 1
}
}, },
"win": { "win": {
"icon": "build/icons/icon.ico" "icon": "build/icons/icon.ico",
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}, },
"linux": { "linux": {
"icon": "build/icons" "icon": "build/icons"

View File

@ -4,6 +4,7 @@ import init from './common/common';
import {autoUpdate} from './common/autoUpdate'; import {autoUpdate} from './common/autoUpdate';
import createTray from './tray'; import createTray from './tray';
import {commonConst} from './common/utils'; import {commonConst} from './common/utils';
import pkg from '../../package.json';
const {main} = require("./browsers")(); const {main} = require("./browsers")();
@ -73,6 +74,9 @@ class initApp {
this.createWindow(); this.createWindow();
} }
}); });
if (commonConst.windows()) {
app.setAppUserModelId(pkg.build.appId);
}
} }
onQuit () { onQuit () {