Explorar o código

fixing scripts path

Baptiste Augrain %!s(int64=4) %!d(string=hai) anos
pai
achega
c3f50a8efe

+ 1 - 2
.github/workflows/linux.yml

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

+ 2 - 2
.github/workflows/windows.yml

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

+ 3 - 1
check_cron_or_pr.sh

@@ -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 - 0
scripts/build_linux.sh

@@ -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 - 0
scripts/build_windows.sh

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