2
0
mirror of https://github.com/frappe/books.git synced 2024-12-31 22:11:48 +00:00

ci: setup github action build, remove travis.yml

This commit is contained in:
18alantom 2021-12-13 11:34:37 +05:30 committed by Alan
parent 1dac832391
commit f32f1315ff
2 changed files with 57 additions and 43 deletions

57
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,57 @@
name: Build
on:
push:
branches: [$default-branch]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
setup_and_build:
runs-on: macos-latest
steps:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '16.4.0'
- name: Set yarn version
run: yarn set version 1.22.17
- name: Checkout Books
uses: actions/checkout@v2
with:
path: main
- name: Checkout FrappeJS
uses: actions/checkout@v2
with:
repository: 'frappe/frappejs'
path: framework
- name: Setup FrappeJS
run: |
cd $GITHUB_WORKSPACE/framework
yarn
yarn link
- name: Setup Books
run: |
cd $GITHUB_WORKSPACE/main
yarn
yarn link frappejs
- name: Install RPM
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install rpm
- name: Run build
env:
CSC_IDENTITY_AUTO_DISCOVERY: false
APPLE_NOTARIZE: 0
run: |
cd $GITHUB_WORKSPACE/main
yarn electron:build -mwl --publish never

View File

@ -1,43 +0,0 @@
matrix:
include:
- os: osx
osx_image: xcode10.2
language: node_js
node_js: "13"
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 | \
grep -Eo '^[^\s=]*(DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS|APPVEYOR_|CSC_|_TOKEN|_KEY|AWS_|STRIP|BUILD_)[^\s=]*' | \
sed '/^$/d;s/^/-e /' | \
paste -sd ' ' \
) \
-v ${PWD}:/project \
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine \
/bin/bash -c "yarn --link-duplicates --pure-lockfile && yarn electron:build --linux --win"
else
yarn electron:build
fi
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"