Title: [275884] trunk/Tools
Revision
275884
Author
aakash_j...@apple.com
Date
2021-04-13 07:20:44 -0700 (Tue, 13 Apr 2021)

Log Message

Delete various old EWS specific scripts
https://bugs.webkit.org/show_bug.cgi?id=224460

Reviewed by Alexey Proskuryakov.

* EWSTools/Start-Queue.ps1: Removed.
* EWSTools/boot.sh: Removed.
* EWSTools/build-boot-cmd.sh: Removed.
* EWSTools/screen-config: Removed.
* EWSTools/start-queue-mac.sh: Removed.
* EWSTools/start-queue-win.sh: Removed.
* EWSTools/start-queue.sh: Removed.
* EWSTools/ubuntu-ews-packages: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/Tools/ChangeLog (275883 => 275884)


--- trunk/Tools/ChangeLog	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/ChangeLog	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,3 +1,19 @@
+2021-04-13  Aakash Jain  <aakash_j...@apple.com>
+
+        Delete various old EWS specific scripts
+        https://bugs.webkit.org/show_bug.cgi?id=224460
+
+        Reviewed by Alexey Proskuryakov.
+
+        * EWSTools/Start-Queue.ps1: Removed.
+        * EWSTools/boot.sh: Removed.
+        * EWSTools/build-boot-cmd.sh: Removed.
+        * EWSTools/screen-config: Removed.
+        * EWSTools/start-queue-mac.sh: Removed.
+        * EWSTools/start-queue-win.sh: Removed.
+        * EWSTools/start-queue.sh: Removed.
+        * EWSTools/ubuntu-ews-packages: Removed.
+
 2021-04-12  Aakash Jain  <aakash_j...@apple.com>
 
         Make Commit Queue robust by adding few git commands to clean up repository

Deleted: trunk/Tools/EWSTools/Start-Queue.ps1 (275883 => 275884)


--- trunk/Tools/EWSTools/Start-Queue.ps1	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/Start-Queue.ps1	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,103 +0,0 @@
-# Copyright (C) 2017 Sony Interactive Entertainment Inc.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-# 
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-<#
-    .Synopsis
-    Starts a EWS bot for WebKit.
-
-    .Parameter Queue
-    The name of the EWS queue.
-    .Parameter Name
-    The name of the EWS server.
-    .Parameter Iterations
-    The number of iterations to run webkit-patch for before cleaning the bot's working directory.
-#>
-
-Param(
-    [Parameter(Mandatory)]
-    [string] $queue,
-    [Parameter(Mandatory)]
-    [string] $name,
-    [Parameter()]
-    [int] $iterations = 10
-)
-
-
-function Clean-Git
-{
-    git clean -f; # Remove any left-over layout test results, added files, etc.
-    git rebase --abort; # If we got killed during a git rebase, we need to clean up.
-    git fetch origin; # Avoid updating the working copy to a stale revision.
-    git checkout origin/master -f;
-    git branch -D master;
-    git checkout origin/master -b master;
-}
-
-# Over time, git for Windows can fill up a user's temporary directory with files.
-function Clean-TempDirectory
-{
-    Write-Host ('Cleaning user temp directory ({0}).' -f $env:temp);
-    $countBefore = (Get-ChildItem -Recurse $env:temp | Measure-Object).Count;
-
-    Get-ChildItem $env:temp | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue;
-    $countAfter = (Get-ChildItem -Recurse $env:temp | Measure-Object).Count;
-
-    Write-Host ('{0} items successfully removed.' -f ($countBefore - $countAfter));
-    Write-Host ('{0} items could not be removed.' -f $countAfter);
-}
-
-# TODO: Switch to test-webkitpy when it works without cygwin
-function Clean-PythonC
-{
-    Write-Host 'Removing pyc files';
-
-    $pycFiles = Get-ChildItem Tools -Include *.pyc -Recurse;
-
-    foreach ($file in $pycFiles) {
-        Write-Host ('Removing {0}' -f $file.FullName);
-        Remove-Item $file.FullName;
-    }
-}
-
-function Clean-WebKitBuild
-{
-    if (Test-Path __cmake_systeminformation) {
-        Write-Host 'Removing CMake cache';
-        Remove-Item __cmake_systeminformation -Recurse -Force;
-    }
-
-    if (Test-Path WebKitBuild) {
-        Write-Host 'Removing WebKitBuild';
-        Remove-Item WebKitBuild -Recurse -Force;
-    }
-}
-
-while ($true) {
-    Clean-WebKitBuild;
-    Clean-PythonC;
-    Clean-TempDirectory;
-    Clean-Git;
-
-    perl ./Tools/Scripts/update-webkit;
-    python ./Tools/Scripts/webkit-patch $queue --bot-id=$name --no-confirm --exit-after-iteration $iterations;
-    python /Tools/CISupport/kill-old-processes
-}

Deleted: trunk/Tools/EWSTools/boot.sh (275883 => 275884)


--- trunk/Tools/EWSTools/boot.sh	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/boot.sh	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-CWD=$(pwd)
-
-cd ~/tools
-screen -d -m -c ./screen-config
-
-cd $CWD

Deleted: trunk/Tools/EWSTools/build-boot-cmd.sh (275883 => 275884)


--- trunk/Tools/EWSTools/build-boot-cmd.sh	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/build-boot-cmd.sh	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-echo "Usage: build-boot-cmd.sh BOOT_COMMAND"
-exit 1
-fi
-
-echo "$1" > ~/tools/screen-config

Deleted: trunk/Tools/EWSTools/screen-config (275883 => 275884)


--- trunk/Tools/EWSTools/screen-config	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/screen-config	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,4 +0,0 @@
-screen -t style ./start-queue.sh style-queue 10
-screen -t qt ./start-queue.sh qt-ews 10
-screen -t kr ./start-queue.sh chromium-ews 10
-screen -t gtk ./start-queue.sh gtk-ews 10

Deleted: trunk/Tools/EWSTools/start-queue-mac.sh (275883 => 275884)


--- trunk/Tools/EWSTools/start-queue-mac.sh	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/start-queue-mac.sh	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,98 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2012 Google Inc. All rights reserved.
-# Copyright (c) 2014, 2015 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -lt 3 ]]; then
-    echo "Usage: start-queue-loop.sh QUEUE_NAME BOT_ID RESET_AFTER_ITERATION [QUEUE_PARAMS]"
-    exit 1
-fi
-
-QUEUE_NAME=$1
-BOT_ID=$2
-RESET_AFTER_ITERATION=$3
-shift 3
-QUEUE_PARAMS="$@"
-
-EWS_HOME=/Volumes/Data/EWS
-WEBKIT_HOME=$EWS_HOME/WebKit
-LOGS_DIR=$EWS_HOME/$QUEUE_NAME-logs
-
-if [ ! -d "$LOGS_DIR" ]; then
-    mkdir -p $LOGS_DIR
-fi
-
-# If building for iOS, make sure we run this script to make it possible to build frameworks.
-if [ "$QUEUE_NAME" == "ios-ews" ]; then
-    (cd $WEBKIT_HOME; sudo ./Tools/Scripts/configure-xcode-for-embedded-development)
-fi
-
-# Delete log files older than 30 days, move aside the main $QUEUE_NAME-ews.log file to prevent it from growing extra large.
-cd $LOGS_DIR
-find . -mtime +30 -delete
-if [ -s $QUEUE_NAME.log ]; then
-    filesize=$(stat -f%z "$QUEUE_NAME.log")  # filesize in bytes.
-    if [ $filesize -ge 100000 ]; then
-        mv -f $QUEUE_NAME.log ${QUEUE_NAME}_$(date +%Y-%m-%d_%H-%m).log
-    fi
-fi
-
-# Fix-up rotten Simulator state
-/bin/rm -rf ~/Library/Developer/CoreSimulator/Devices/*
-/usr/bin/sudo /usr/bin/killall -9 com.apple.CoreSimulator.CoreSimulatorServer
-/usr/bin/xcrun simctl delete unavailable
-/bin/rm -rf ~/Library/Logs/CoreSimulator/*
-
-cd $WEBKIT_HOME
-
-# Delete WebKitBuild to force a clean build
-rm -rf $WEBKIT_HOME/WebKitBuild
-
-# This somewhat quirky sequence of steps seems to clear up all the broken
-# git situations we've gotten ourself into in the past.
-git clean -f # Remove any left-over layout test results, added files, etc.
-git rebase --abort # If we got killed during a git rebase, we need to clean up.
-git fetch origin # Avoid updating the working copy to a stale revision.
-git checkout origin/master -f
-git branch -D master
-git checkout origin/master -b master
-
-# Most queues auto-update as part of their normal operation, but updating
-# here makes sure that we get the latest version of the master process.
-./Tools/Scripts/update-webkit
-
-# test-webkitpy has code to remove orphaned .pyc files, so we
-# run it before running webkit-patch to avoid stale .pyc files
-# preventing webkit-patch from launching.
-./Tools/Scripts/test-webkitpy
-
-# We use --exit-after-iteration to pick up any changes to webkit-patch, including
-# changes to the contributors.json file.
-./Tools/Scripts/webkit-patch $QUEUE_NAME --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION $QUEUE_PARAMS
-
-osascript -e 'tell app "System Events" to restart'

Deleted: trunk/Tools/EWSTools/start-queue-win.sh (275883 => 275884)


--- trunk/Tools/EWSTools/start-queue-win.sh	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/start-queue-win.sh	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,70 +0,0 @@
-#!/bin/sh
-
-if [[ $# -lt 4 ]]; then
-echo "Usage: start-queue-win.sh WEBKIT_BUGZILLA_USERNAME WEBKIT_BUGZILLA_PASSWORD BOT_ID RESET_AFTER_ITERATION WEBKIT_STATUS_API_KEY"
-exit 1
-fi
-
-export WEBKIT_BUGZILLA_USERNAME=$1
-export WEBKIT_BUGZILLA_PASSWORD=$2
-export BOT_ID=$3
-export RESET_AFTER_ITERATION=$4
-export WEBKIT_STATUS_API_KEY=$5
-
-function error_handler()
-{
-    start_ews
-}
-
-function start_ews()
-{
-    trap 'error_handler ${LINENO} $?' ERR
-
-    if [[ $PROGRAMFILES =~ "(x86)" ]]
-    then
-        PROGRAMFILES_X86=$PROGRAMFILES
-    else
-        PROGRAMFILES_X86="$PROGRAMFILES (x86)"
-    fi
-
-    "$PROGRAMFILES_X86/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build/vcvars32.bat"
-
-    while :
-    do
-        date
-        echo "TASK: cleaning up old log files."
-        cd ~/win-ews-logs
-        rm -rf win-ews.old
-        mv win-ews.log win-ews.old
-        find ~/win-ews-logs -mtime +7 -exec rm -f {} \;
-        echo "TASK: Starting up"
-        cd ~/WebKit
-        echo "TASK: Cleaning WebKitBuild"
-        rm -rf WebKitBuild
-        date
-        echo "TASK: Cleaning up"
-        svn cleanup
-        date
-        echo "TASK: svn revert -R *"
-        svn revert -R *
-        date
-        echo "TASK: svn status"
-        svn status | grep "?" | awk '{print $2}' | xargs rm -rf
-        date
-        echo "TASK: webkit-patch clean"
-        ~/WebKit/Tools/Scripts/webkit-patch clean
-        date
-        echo "TASK: svn up --non-interactive"
-        svn up --non-interactive
-        date
-        echo "TASK: kill orphaned tasks"
-        taskkill.exe /f /im cl.exe
-        echo "TASK: test-webkitpy"
-        ~/WebKit/Tools/Scripts/test-webkitpy
-        echo "TASK: webkit-patch win-ews"
-        ~/WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION
-    done
-}
-
-start_ews
-

Deleted: trunk/Tools/EWSTools/start-queue.sh (275883 => 275884)


--- trunk/Tools/EWSTools/start-queue.sh	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/start-queue.sh	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,86 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-USAGE="Usage: start-queue-loop.sh [OPTIONS] QUEUE_NAME BOT_ID RESET_AFTER_ITERATION
-       -r RESET_SCRIPT    A bash script to be run every cycle just before the queue starts up again.
-       -p QUEUE_PARAMS    Additional parameters to be given to the queue's execution command."
-
-while getopts "r:p:" FLAG
-do
-    case $FLAG in
-    r) RESET_SCRIPT=$OPTARG;;
-    p) QUEUE_PARAMS=$OPTARG;;
-    esac
-done
-
-shift $((OPTIND-1))
-
-if [[ "$#" -ne 3 ]]; then
-    echo "$USAGE"
-    exit 1
-fi
-
-QUEUE_NAME=$1
-BOT_ID=$2
-RESET_AFTER_ITERATION=$3
-
-cd /mnt/git/webkit-$QUEUE_NAME
-while :
-do
-    # This clears any temporary file leaks after running tests.
-    # Not the nicest solution but it will keep the queues running instead of
-    # filling up all remaining disk space.
-    # NOTE: This will clear any Chromium browser temporary files running on the
-    # machine as well. Not advised to run this while using Chrome.
-    find /tmp -name ".org.chromium.Chromium.*" | xargs rm -rf
-
-    # This somewhat quirky sequence of steps seems to clear up all the broken
-    # git situations we've gotten ourself into in the past.
-    git clean -f -d # Remove any left-over layout test results, added files, etc.
-    git rebase --abort # If we got killed during a git rebase, we need to clean up.
-    git fetch origin # Avoid updating the working copy to a stale revision.
-    git checkout origin/master -f
-    git branch -D master
-    git checkout origin/master -b master
-
-    # Most queues auto-update as part of their normal operation, but updating
-    # here makes sure that we get the latest version of the master process.
-    ./Tools/Scripts/update-webkit
-
-    # test-webkitpy has code to remove orphaned .pyc files, so we
-    # run it before running webkit-patch to avoid stale .pyc files
-    # preventing webkit-patch from launching.
-    ./Tools/Scripts/test-webkitpy
-
-    # Run the given reset script.
-    if [[ -n "$RESET_SCRIPT" ]]; then
-        bash "$RESET_SCRIPT"
-    fi
-
-    # We use --exit-after-iteration to pick up any changes to webkit-patch, including
-    # changes to the contributors.json file.
-    ./Tools/Scripts/webkit-patch $QUEUE_NAME --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION $QUEUE_PARAMS
-done

Deleted: trunk/Tools/EWSTools/ubuntu-ews-packages (275883 => 275884)


--- trunk/Tools/EWSTools/ubuntu-ews-packages	2021-04-13 14:10:32 UTC (rev 275883)
+++ trunk/Tools/EWSTools/ubuntu-ews-packages	2021-04-13 14:20:44 UTC (rev 275884)
@@ -1,55 +0,0 @@
-subversion
-git-core
-git-svn
-binutils-gold
-python-mechanize
-libqt4-dev
-gperf
-fakeroot
-g++
-g++-multilib
-gperf
-autoconf
-automake
-libapache2-mod-php5
-libasound2-dev
-libbz2-dev
-libicu-dev
-libphonon-dev
-libsqlite3-dev
-libcairo2-dev
-libdbus-glib-1-dev
-libgconf2-dev
-libgl1-mesa-dev
-libglu1-mesa-dev
-libglib2.0-dev
-libjpeg62-dev
-libnspr4-dev
-libnss3-dev
-libpam0g-dev
-libtool
-libpango1.0-dev
-libicu-dev
-libxslt-dev
-libxslt1-dev
-libxss-dev
-libsoup2.4-dev
-libsqlite3-dev
-mesa-common-dev
-patch
-perl
-pkg-config
-python
-libcupsys2-dev
-libgnome-keyring-dev
-libcurl4-gnutls-dev
-libcupsys2-dev
-gperf
-libjpeg62-dev
-libpng12-dev
-libxt-dev
-autotools-dev
-libgstreamer-plugins-base0.10-dev
-libenchant-dev
-gtk-doc-tools
-libgeoclue-dev
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to