Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeepak1556 <hop2deep@gmail.com>2022-02-16 20:16:46 +0300
committerdeepak1556 <hop2deep@gmail.com>2022-02-16 20:16:46 +0300
commit0992d85866606397366e362b5cb86dd7c86d2f30 (patch)
tree29d5f9d1f128f3a44ed3c47dc32b1b9dda5d708e /scripts
parenta0d3b2e6c430b7d0a762a57bfec0c3d1e8b7a626 (diff)
ci: fix linux system services
Refs https://github.com/microsoft/vscode/issues/142572
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/test-integration.sh4
-rwxr-xr-xscripts/test-remote-integration.sh4
-rwxr-xr-xscripts/test.sh4
3 files changed, 6 insertions, 6 deletions
diff --git a/scripts/test-integration.sh b/scripts/test-integration.sh
index 2fb82e34740..f0d239a470d 100755
--- a/scripts/test-integration.sh
+++ b/scripts/test-integration.sh
@@ -6,9 +6,9 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
ROOT=$(dirname $(dirname $(realpath "$0")))
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
- # --disable-dev-shm-usage --use-gl=swiftshader: when run on docker containers where size of /dev/shm
+ # --disable-dev-shm-usage: when run on docker containers where size of /dev/shm
# partition < 64MB which causes OOM failure for chromium compositor that uses the partition for shared memory
- LINUX_EXTRA_ARGS="--disable-dev-shm-usage --use-gl=swiftshader"
+ LINUX_EXTRA_ARGS="--disable-dev-shm-usage"
fi
VSCODEUSERDATADIR=`mktemp -d 2>/dev/null`
diff --git a/scripts/test-remote-integration.sh b/scripts/test-remote-integration.sh
index 39c36592e24..32a83a0c9d6 100755
--- a/scripts/test-remote-integration.sh
+++ b/scripts/test-remote-integration.sh
@@ -6,9 +6,9 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
ROOT=$(dirname $(dirname $(realpath "$0")))
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
- # --disable-dev-shm-usage --use-gl=swiftshader: when run on docker containers where size of /dev/shm
+ # --disable-dev-shm-usage: when run on docker containers where size of /dev/shm
# partition < 64MB which causes OOM failure for chromium compositor that uses the partition for shared memory
- LINUX_EXTRA_ARGS="--disable-dev-shm-usage --use-gl=swiftshader"
+ LINUX_EXTRA_ARGS="--disable-dev-shm-usage"
fi
VSCODEUSERDATADIR=`mktemp -d 2>/dev/null`
diff --git a/scripts/test.sh b/scripts/test.sh
index 14a72e09cc3..66fde1df2c4 100755
--- a/scripts/test.sh
+++ b/scripts/test.sh
@@ -6,9 +6,9 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
ROOT=$(dirname $(dirname $(realpath "$0")))
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
- # --disable-dev-shm-usage --use-gl=swiftshader: when run on docker containers where size of /dev/shm
+ # --disable-dev-shm-usage: when run on docker containers where size of /dev/shm
# partition < 64MB which causes OOM failure for chromium compositor that uses the partition for shared memory
- LINUX_EXTRA_ARGS="--disable-dev-shm-usage --use-gl=swiftshader"
+ LINUX_EXTRA_ARGS="--disable-dev-shm-usage"
fi
cd $ROOT