fixing scripts path
This commit is contained in:
parent
3e50a25606
commit
c3f50a8efe
5 changed files with 22 additions and 5 deletions
3
.github/workflows/linux.yml
vendored
3
.github/workflows/linux.yml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
@ -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
4
check_cron_or_pr.sh
Normal file → Executable 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
8
scripts/build_linux.sh
Normal 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
8
scripts/build_windows.sh
Normal 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
|
Loading…
Reference in a new issue