-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.travis.yml
48 lines (41 loc) · 1.39 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
matrix:
include:
- os: osx
osx_image: xcode10.2
language: node_js
node_js: 12
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- os: linux
services: docker
language: generic
cache:
directories:
- node_modules
- $HOME/.cache/electron
- $HOME/.cache/electron-builder
script:
- |
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
docker run --rm \
--env-file <(env | grep -vE '\r|\n' | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS_TAG|TRAVIS|TRAVIS_REPO_|TRAVIS_BUILD_|TRAVIS_BRANCH|TRAVIS_PULL_REQUEST_|APPVEYOR_|CSC_|GH_|GITHUB_|BT_|AWS_|STRIP|BUILD_') \
-v ${PWD}:/project \
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine \
/bin/bash -c "npm i && export GH_TOKEN = ${GH_TOKEN} && npm run build -- -ml --publish onTag"
else
export GH_TOKEN = ${GH_TOKEN} && npm run build -- -ml --publish onTag
fi
branches:
only:
- main
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
after_script:
- git config user.name "BWrong"
- git config user.email "[email protected]"
- git add .
- git commit -m "publish"
- git push --force --quiet "https://${GH_TOKEN}@github.com/BWrong/misthinTools.git" main:main