2020-04-30 11:52:54 +00:00
|
|
|
language: node_js
|
|
|
|
node_js: node
|
2020-02-18 04:22:12 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- name: Test
|
2020-02-19 04:31:40 +00:00
|
|
|
if: tag IS blank
|
2020-04-30 11:52:54 +00:00
|
|
|
script: ./ci/container/exec.sh ./ci/steps/test.sh
|
2020-02-19 00:06:35 +00:00
|
|
|
deploy: null
|
2020-04-30 11:52:54 +00:00
|
|
|
install: null
|
2020-02-19 00:06:35 +00:00
|
|
|
- name: Linux Release
|
|
|
|
if: tag IS present
|
2020-04-30 11:52:54 +00:00
|
|
|
script: ./ci/steps/linux-release.sh
|
|
|
|
install: null
|
|
|
|
- name: Linux Release
|
2020-02-19 00:06:35 +00:00
|
|
|
if: tag IS present
|
2020-02-18 04:22:12 +00:00
|
|
|
arch: arm64
|
2020-04-30 11:52:54 +00:00
|
|
|
script: |
|
|
|
|
sudo apt-get update && sudo apt-get install -y jq || exit 1
|
|
|
|
./ci/steps/linux-release.sh
|
|
|
|
install: null
|
2020-02-18 04:22:12 +00:00
|
|
|
- name: MacOS Release
|
2020-02-19 00:06:35 +00:00
|
|
|
if: tag IS present
|
2020-02-18 04:22:12 +00:00
|
|
|
os: osx
|
2020-04-30 11:52:54 +00:00
|
|
|
# node 13/14 crashes in the build process for some reason.
|
2020-02-18 04:22:12 +00:00
|
|
|
node_js: 12
|
2020-04-30 11:52:54 +00:00
|
|
|
script: |
|
|
|
|
HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_AUTO_UPDATE=1 brew install jq || exit 1
|
|
|
|
travis_wait 60 ./ci/steps/static-release.sh || exit 1
|
|
|
|
install: null
|
2020-02-18 04:22:12 +00:00
|
|
|
|
2020-02-26 18:42:57 +00:00
|
|
|
before_deploy:
|
2020-03-03 22:01:22 +00:00
|
|
|
- echo "$JSON_KEY" | base64 --decode > ./ci/key.json
|
2020-02-26 18:42:57 +00:00
|
|
|
|
2020-02-18 04:22:12 +00:00
|
|
|
deploy:
|
|
|
|
- provider: releases
|
|
|
|
edge: true
|
|
|
|
draft: true
|
2020-03-26 23:27:25 +00:00
|
|
|
overwrite: true
|
2020-02-18 04:22:12 +00:00
|
|
|
tag_name: $TRAVIS_TAG
|
|
|
|
target_commitish: $TRAVIS_COMMIT
|
|
|
|
name: $TRAVIS_TAG
|
|
|
|
file:
|
2020-04-30 11:52:54 +00:00
|
|
|
- release-github/*.tar.gz
|
|
|
|
- release-github/*.zip
|
|
|
|
- release-github/*.deb
|
|
|
|
- release-github/*.rpm
|
2020-02-18 04:22:12 +00:00
|
|
|
on:
|
|
|
|
tags: true
|
2020-02-26 18:42:57 +00:00
|
|
|
- provider: gcs
|
|
|
|
edge: true
|
|
|
|
bucket: "codesrv-ci.cdr.sh"
|
2020-02-27 17:21:40 +00:00
|
|
|
upload_dir: "releases"
|
2020-02-26 18:42:57 +00:00
|
|
|
key_file: ./ci/key.json
|
2020-04-30 11:52:54 +00:00
|
|
|
local_dir: ./release-gcp
|
2020-02-26 18:42:57 +00:00
|
|
|
on:
|
|
|
|
tags: true
|
2020-03-26 20:50:32 +00:00
|
|
|
# TODO: The gcs provider fails to install on arm64.
|
2020-04-30 11:52:54 +00:00
|
|
|
condition: $TRAVIS_CPU_ARCH == amd64
|
|
|
|
- provider: script
|
|
|
|
edge: true
|
|
|
|
# We do not use the travis npm deploy integration as it does not allow us to
|
|
|
|
# deploy a subpath and and v2 which should, just errors out that the src does not exist
|
|
|
|
script: ./ci/steps/publish-npm.sh
|
|
|
|
on:
|
|
|
|
tags: true
|
|
|
|
condition: $TRAVIS_CPU_ARCH == amd64 && $TRAVIS_OS_NAME == linux
|
2020-02-18 04:22:12 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
timeout: 600
|
|
|
|
yarn: true
|
2020-03-03 22:11:09 +00:00
|
|
|
directories:
|
2020-04-30 11:52:54 +00:00
|
|
|
- .cache
|
|
|
|
- out
|
|
|
|
- dist
|
2020-03-03 22:11:09 +00:00
|
|
|
- lib/vscode/.build/extensions
|