mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
* update xterm to 4 * add back webGL addon * remove ligatures xterm addon, unused atm and does not work with webGL renderer * update node-pty * more work on trying to get xterm4 to work * update xterm to 4.0.2 * move where xterm addon props are assigned * more updates * only load webgl addon if webgl is enabled * fix search function * remove rendererType setting, the xterm addon does this for us * use xcode 10.3 on circleci * fix typo * revert node-pty bump for now * use stable versions of the xterm plugins * fix focus listener * add windowsMode prop * move webGL check * apply tweaks by @GitSquared * fix resizing issue * Revert "fix resizing issue" This reverts commit fce3780b038d69378f63bdfbfa613f20130fad34. * apply review suggestions * change so all addons have separate instances for each terminal * update yarn-standalone to 1.19 * fix resize problem of split view by @ivanwonder * apply review feedback * fix lint * add name and version to package.json * address review feedback * more review feedback
97 lines
1.9 KiB
YAML
97 lines
1.9 KiB
YAML
version: 2
|
|
jobs:
|
|
install:
|
|
macos:
|
|
xcode: "10.3.0"
|
|
working_directory: ~/repo
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
key: cache-{{ checksum "yarn.lock" }}
|
|
- run:
|
|
name: Installing Dependencies
|
|
command: yarn --ignore-engines
|
|
- save_cache:
|
|
key: cache-{{ checksum "yarn.lock" }}
|
|
paths:
|
|
- node_modules
|
|
- run:
|
|
name: Getting build icon
|
|
command: if [[ $CIRCLE_BRANCH == canary ]]; then cp build/canary.icns build/icon.icns; fi
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- node_modules
|
|
|
|
test:
|
|
macos:
|
|
xcode: "10.3.0"
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Testing
|
|
command: yarn test
|
|
|
|
build:
|
|
macos:
|
|
xcode: "10.3.0"
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Building
|
|
command: yarn dist --publish 'never'
|
|
- store_artifacts:
|
|
path: dist
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- dist
|
|
|
|
release:
|
|
macos:
|
|
xcode: "10.3.0"
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Deploying to GitHub
|
|
command: yarn dist
|
|
|
|
|
|
workflows:
|
|
version: 2
|
|
build:
|
|
jobs:
|
|
- install:
|
|
filters:
|
|
tags:
|
|
only: /.*/
|
|
- test:
|
|
requires:
|
|
- install
|
|
filters:
|
|
tags:
|
|
only: /.*/
|
|
- build:
|
|
requires:
|
|
- test
|
|
filters:
|
|
branches:
|
|
only:
|
|
- master
|
|
- canary
|
|
tags:
|
|
ignore: /.*/
|
|
- release:
|
|
requires:
|
|
- test
|
|
filters:
|
|
tags:
|
|
only: /.*/
|
|
branches:
|
|
ignore: /.*/
|