@@ -43,8 +43,7 @@ jobs:
run: npm install -g yarn
- name: Check PR or cron
- run: |
- . check_cron_or_pr.sh
+ run: ./check_cron_or_pr.sh
- name: Clone VSCode repo
run: ./get_repo.sh
@@ -35,8 +35,8 @@ jobs:
python-version: '2.x'
+ shell: bash
@@ -3,11 +3,13 @@
set -e
if [[ $github.event.number ]]; then
- # it's a PR
+ echo "It's a PR"
export SHOULD_BUILD="yes"
export SHOULD_DEPLOY="no"
else
+ echo "It's a cron"
+
export SHOULD_DEPLOY="yes"
fi
@@ -0,0 +1,8 @@
+#!/bin/bash
+rm -rf VSCode*
+rm -rf vscode
+. get_repo.sh
+SHOULD_BUILD=yes CI_BUILD=no OS_NAME=linux VSCODE_ARCH=x64 . build.sh
+SHOULD_BUILD=yes CI_BUILD=no OS_NAME=windows VSCODE_ARCH=x64 . build.sh