Add back travis since github actions is trash

This commit is contained in:
Anmol Sethi
2020-02-17 23:22:12 -05:00
parent 0d31a51eeb
commit eb3cf303ad
8 changed files with 62 additions and 201 deletions

46
.travis.yml Normal file
View File

@@ -0,0 +1,46 @@
language: minimal
jobs:
include:
- stage: Code
name: Format
script: ./ci/image/run.sh "yarn && yarn vscode && yarn fmt"
- name: Lint
script: ./ci/image/run.sh "yarn && yarn vscode && yarn lint"
- name: Test
script: ./ci/image/run.sh "yarn && yarn vscode && yarn test"
- stage: Release
name: Linux Release
script: travis_wait 60 ./ci/image/run.sh "yarn && yarn vscode && ci/release.sh"
- name: Linux ARM64 Release
script: travis_wait 60 ./ci/image/run.sh "yarn && yarn vscode && ci/release.sh"
arch: arm64
- name: MacOS Release
os: osx
language: node_js
node_js: 12
script: yarn && yarn vscode && travis_wait 60 ci/release.sh
stages:
- name: Code
- name: Release
if: $TRAVIS_TAG != ""
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
condition: $TRAVIS_BUILD_STAGE_NAME == Release
cache:
timeout: 600
yarn: true