Skip to content

Commit e3cbc67

Browse files
committed
fixup! fixup! fixup! Add NPM package, debs, rpms and refactor CI/build process
1 parent b34e2a3 commit e3cbc67

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
1-
language: nodejs
1+
language: node_js
2+
node_js: node
23

34
jobs:
45
include:
56
- name: Test
67
if: tag IS blank
78
script: ./ci/container/exec.sh ./ci/steps/test.sh
89
deploy: null
10+
install: null
911
- name: Linux Release #if: tag IS present
1012
script: |
1113
./ci/steps/linux-release.sh || exit 1
1214
./ci/steps/publish-npm.sh || exit 1
15+
install: null
1316
- name: Linux Release #if: tag IS present
17+
arch: arm64
1418
script: |
1519
sudo apt-get update && sudo apt-get install -y jq || exit 1
1620
./ci/steps/linux-release.sh
17-
arch: arm64
21+
install: null
1822
- name: MacOS Release #if: tag IS present
1923
os: osx
20-
language: node_js
21-
node_js: 12
2224
script: |
2325
HOMEBREW_NO_AUTO_UPDATE=1 brew install jq || exit 1
24-
./ci/steps/static-release.sh || exit 1
26+
travis_wait 30 ./ci/steps/static-release.sh || exit 1
27+
install: null
2528

2629
before_deploy:
2730
- echo "$JSON_KEY" | base64 --decode > ./ci/key.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "codeserver",
2+
"name": "code-server",
33
"license": "MIT",
44
"version": "3.3.0-rc.4",
55
"description": "Run VS Code on a remote server.",

0 commit comments

Comments
 (0)