fixing scripts path

This commit is contained in:
Baptiste Augrain 2021-03-10 16:56:14 +01:00
parent 3e50a25606
commit c3f50a8efe
5 changed files with 22 additions and 5 deletions

View file

@ -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

View file

@ -35,8 +35,8 @@ jobs:
python-version: '2.x'
- name: Check PR or cron
run: |
. check_cron_or_pr.sh
run: ./check_cron_or_pr.sh
shell: bash
- name: Clone VSCode repo
run: ./get_repo.sh

4
check_cron_or_pr.sh Normal file → Executable file
View file

@ -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

8
scripts/build_linux.sh Normal file
View file

@ -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

8
scripts/build_windows.sh Normal file
View file

@ -0,0 +1,8 @@
#!/bin/bash
rm -rf VSCode*
rm -rf vscode
. get_repo.sh
SHOULD_BUILD=yes CI_BUILD=no OS_NAME=windows VSCODE_ARCH=x64 . build.sh