ci: Remove kokoro config (#1029)

We are now fully committed to GitHub Actions for CI, and all
contributions will come through public PRs, and not through
Google-internal channels.
This commit is contained in:
Joey Parrish 2022-02-10 17:52:35 -08:00 committed by GitHub
parent e1b0c7c454
commit 5c6157f67a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 108 deletions

View File

@ -1,29 +0,0 @@
# Copyright 2017 Google Inc. All Rights Reserved.
"""This is a simple string replacer for DEPS file.
This replaces all instances of search_text with replacement_text.
Usage:
this_script.py search_text replacement_text
"""
# This runs on a Windows kokoro host where we don't control the python version.
# Because this runs in python2, we can't specify an encoding in open().
# pylint: disable=unspecified-encoding
import os
import sys
if len(sys.argv) != 3:
sys.exit(1)
script_dir = os.path.dirname(os.path.realpath(__file__))
deps_file = os.path.join(os.path.dirname(script_dir), 'DEPS')
new_file_content = ''
with open(deps_file, 'r') as f:
for line in f:
new_file_content += line.replace(sys.argv[1], sys.argv[2])
with open(deps_file, 'w') as f:
f.write(new_file_content)

View File

@ -1,35 +0,0 @@
:: Copyright 2017 Google Inc. All Rights Reserved.
set ROOTDIR=%cd%
set PACKAGERDIR=%ROOTDIR%\git\src
set PATH=c:\Python35;%PATH%
set GYP_DEFINES="target_arch=%PLATFORM%"
if "%PLATFORM%"=="x64" (
set OUTPUT_DIRECTORY="out\%CONFIGURATION%_x64"
) else (
set OUTPUT_DIRECTORY="out\%CONFIGURATION%"
)
:: TODO(rkuroiwa): Put this in a batch script and source it, so that this
:: doesn't need to be copied for all configurations.
git clone "https://chromium.googlesource.com/chromium/tools/depot_tools.git" depot_tools
set DEPOTTOOLSDIR=%ROOTDIR%\depot_tools
python %PACKAGERDIR%\kokoro\deps_replacer.py "https://github.com" "https://github.googlesource.com"
cd %PACKAGERDIR%\..
:: Note that gclient file is a batch script, so 'call' must be used to wait for
:: the result.
:: Also gclient turns off echo, so echo is re-enabled after the command.
call %DEPOTTOOLSDIR%\gclient config "https://github.com/google/shaka-packager.git" --name=src --unmanaged
echo on
call %DEPOTTOOLSDIR%\gclient sync
echo on
cd src
%DEPOTTOOLSDIR%\ninja -C "%OUTPUT_DIRECTORY%" -k 100 || exit /b 1
copy "%OUTPUT_DIRECTORY%\packager.exe" packager-win.exe
for %%f in ("%OUTPUT_DIRECTORY%\*_*test.exe") do (%%f || exit /b 666)
python "%OUTPUT_DIRECTORY%\packager_test.py" -v

View File

@ -1,11 +0,0 @@
build_file: "src/kokoro/windows/build.bat"
env_vars {
key: "PLATFORM"
value: "x64"
}
env_vars {
key: "CONFIGURATION"
value: "Debug"
}

View File

@ -1,11 +0,0 @@
build_file: "src/kokoro/windows/build.bat"
env_vars {
key: "PLATFORM"
value: "x64"
}
env_vars {
key: "CONFIGURATION"
value: "Release"
}

View File

@ -1,11 +0,0 @@
build_file: "src/kokoro/windows/build.bat"
env_vars {
key: "PLATFORM"
value: "x86"
}
env_vars {
key: "CONFIGURATION"
value: "Debug"
}

View File

@ -1,11 +0,0 @@
build_file: "src/kokoro/windows/build.bat"
env_vars {
key: "PLATFORM"
value: "x86"
}
env_vars {
key: "CONFIGURATION"
value: "Release"
}