Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/.travis.yml

54 lines
1.2 KiB
YAML
Raw Normal View History

language: minimal
jobs:
include:
- name: Test
2020-02-19 05:31:40 +01:00
if: tag IS blank
2020-02-19 01:06:35 +01:00
script: ./ci/image/run.sh "yarn && yarn vscode && ./ci/ci.sh"
deploy: null
- name: Linux Release
if: tag IS present
2020-02-18 19:06:18 +01:00
script:
- travis_wait 60 ./ci/image/run.sh "yarn && yarn vscode && ci/release.sh"
- ./ci/release-image/push.sh
- name: Linux ARM64 Release
2020-02-19 01:06:35 +01:00
if: tag IS present
2020-02-18 19:06:18 +01:00
script:
- travis_wait 60 ./ci/image/run.sh "yarn && yarn vscode && ci/release.sh"
- ./ci/release-image/push.sh
arch: arm64
- name: MacOS Release
2020-02-19 01:06:35 +01:00
if: tag IS present
os: osx
language: node_js
node_js: 12
script: yarn && yarn vscode && travis_wait 60 ci/release.sh
2020-02-26 19:42:57 +01:00
before_deploy:
- echo "$JSON_KEY" | base64 --decode > ./ci/key.json
2020-02-26 19:42:57 +01:00
deploy:
- provider: releases
edge: true
draft: true
tag_name: $TRAVIS_TAG
target_commitish: $TRAVIS_COMMIT
name: $TRAVIS_TAG
file:
- release/*.tar.gz
- release/*.zip
on:
tags: true
2020-02-26 19:42:57 +01:00
- provider: gcs
edge: true
bucket: "codesrv-ci.cdr.sh"
2020-02-27 18:21:40 +01:00
upload_dir: "releases"
2020-02-26 19:42:57 +01:00
key_file: ./ci/key.json
local_dir: release-upload
on:
tags: true
cache:
timeout: 600
yarn: true