File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
- language : minimal
1
+ language : nodejs
2
2
3
3
jobs :
4
4
include :
@@ -11,14 +11,16 @@ jobs:
11
11
./ci/steps/linux-release.sh || exit 1
12
12
./ci/steps/publish-npm.sh || exit 1
13
13
- name : Linux Release # if: tag IS present
14
- script : ./ci/steps/linux-release.sh
14
+ script : |
15
+ sudo apt-get update && sudo apt-get install -y jq || exit 1
16
+ ./ci/steps/linux-release.sh
15
17
arch : arm64
16
18
- name : MacOS Release # if: tag IS present
17
19
os : osx
18
20
language : node_js
19
21
node_js : 12
20
22
script : |
21
- brew install jq || exit 1
23
+ HOMEBREW_NO_AUTO_UPDATE=1 brew install jq || exit 1
22
24
./ci/steps/static-release.sh || exit 1
23
25
24
26
before_deploy :
Original file line number Diff line number Diff line change @@ -6,11 +6,6 @@ main() {
6
6
source ./ci/lib.sh
7
7
8
8
if [[ $( arch) == arm64 ]]; then
9
- if [[ $CI ]]; then
10
- sudo apt-get update
11
- sudo apt-get install -y jq
12
- fi
13
-
14
9
# This, strangely enough, fixes the arm build being terminated for not having
15
10
# output on Travis. It's as if output is buffered and only displayed once a
16
11
# certain amount is collected. Five seconds didn't work but one second seems
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codeserver" ,
3
3
"license" : " MIT" ,
4
- "version" : " 3.3.0-rc.3 " ,
4
+ "version" : " 3.3.0-rc.4 " ,
5
5
"description" : " Run VS Code on a remote server." ,
6
6
"homepage" : " https://github.com/cdr/code-server" ,
7
7
"bugs" : {
You can’t perform that action at this time.
0 commit comments