/aosp_15_r20/external/grpc-grpc/templates/tools/dockerfile/test/rbe_ubuntu2004/ |
H A D | Dockerfile.template | 2 --- | 9 # http://www.apache.org/licenses/LICENSE-2.0 19 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04 23 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean 28 RUN ln -s /usr/bin/python3 /usr/bin/python 31 …# Heavily inspired by https://github.com/GoogleCloudPlatform/container-definitions/tree/master/ubu… 32 # See go/llvm-docker 33 # Note that we are using the google's pre-built tools for multiple reasons: 34 …# * this is what the "official" rbe-ubuntu18-04 image is using: See https://github.com/GoogleCloud… 36 # Check https://storage.googleapis.com/clang-builds-stable/clang-ubuntu20_04/latest.txt [all …]
|
/aosp_15_r20/external/grpc-grpc/tools/dockerfile/test/rbe_ubuntu2004/ |
H A D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04 21 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean 29 RUN apt-get update && apt-get install -y \ 31 python3-pip \ 32 python3-setuptools \ 33 python3-yaml \ 34 && apt-get clean 37 RUN python3 -m pip install --upgrade pip==19.3.1 41 RUN python3 -m pip install six==1.16.0 [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/dockerfile/test/rbe_ubuntu2004/ |
D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04 21 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean 29 RUN apt-get update && apt-get install -y \ 31 python3-pip \ 32 python3-setuptools \ 33 python3-yaml \ 34 && apt-get clean 37 RUN python3 -m pip install --upgrade pip==19.3.1 41 RUN python3 -m pip install six==1.16.0 [all …]
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/ |
H A D | kvm-remote.sh | 2 # SPDX-License-Identifier: GPL-2.0+ 6 # Usage: kvm-remote.sh "systems" [ <kvm.sh args> ] 7 # kvm-remote.sh "systems" /path/to/old/run [ <kvm-again.sh args> ] 16 if ! test -d tools/testing/selftests/rcutorture/bin 18 echo $scriptname must be run from top-level directory of kernel source tree. 29 if test -z "$systems" 37 # T: /tmp/kvm-remote.sh.$$ 38 # resdir: /tmp/kvm-remote.sh.$$/res 39 # rundir: /tmp/kvm-remote.sh.$$/res/$ds ("-remote" suffix) 43 # TD: kvm-remote.sh.$$ [all …]
|
/aosp_15_r20/external/executorch/.ci/scripts/ |
H A D | setup-vulkan-linux-deps.sh | 6 # This source code is licensed under the BSD-style license found in the 9 set -ex 12 _https_amazon_aws=https://ossci-android.s3.amazonaws.com 13 _swiftshader_archive=swiftshader-abe07b943-prebuilt.tar.gz 15 mkdir -p $_swiftshader_dir 19 curl --silent --show-error --location --fail --retry 3 \ 20 --output "${_tmp_archive}" "$_https_amazon_aws/${_swiftshader_archive}" 22 tar -C "${_swiftshader_dir}" -xzf "${_tmp_archive}" 30 …s://sdk.lunarg.com/sdk/download/${VULKAN_SDK_VERSION}/linux/vulkansdk-linux-x86_64-${VULKAN_SDK_VE… 33 mkdir -p $_vulkan_sdk_dir [all …]
|
/aosp_15_r20/external/jazzer-api/tests/src/test/shell/ |
H A D | jazzer_from_path_test.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 19 # --- begin runfiles.bash initialization v3 --- 20 # Copy-pasted from the Bazel Bash runfiles library v3. 21 set -uo pipefail; set +e; f=bazel_tools/tools/bash/runfiles/runfiles.bash 22 source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \ 23 …source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null |… 25 source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \ 26 source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \ 27 { echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e 28 # --- end runfiles.bash initialization v3 --- [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/lib/time/ |
D | update.bash | 3 # Use of this source code is governed by a BSD-style 10 # consult https://www.iana.org/time-zones for the latest versions, 13 # ./update.bash -commit 30 set -e 33 rm -rf work 35 go build -o work/mkzip mkzip.go # build now for correct paths in build errors 38 curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz 39 curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz 40 tar xzf tzcode$CODE.tar.gz 41 tar xzf tzdata$DATA.tar.gz [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/boring/ |
D | Dockerfile | 2 # Use of this source code is governed by a BSD-style 17 # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429. 19 RUN apt-get update && \ 20 …apt-get install --no-install-recommends -y cmake xz-utils wget unzip ca-certificates clang-$ClangV… 26 wget https://github.com/ninja-build/ninja/archive/refs/tags/v$NinjaV.tar.gz && \ 27 echo "$NinjaH v$NinjaV.tar.gz" >sha && sha256sum -c sha && \ 28 tar -xzf v$NinjaV.tar.gz && \ 30 cd ninja-$NinjaV && \ 31 CC=clang-$ClangV CXX=clang++-$ClangV ./configure.py --bootstrap && \ 41 wget https://golang.org/dl/go$GoV.linux-$GOARCH.tar.gz && \ [all …]
|
/aosp_15_r20/external/antlr/runtime/Python/ |
H A D | hudson-build.sh | 3 ANTLR_JOB=${1:-ANTLR_Tool} 8 …LR_JOB/lastSuccessful/org.antlr\$antlr/archive/org.antlr/antlr/*/antlr-*-jar-with-dependencies.jar) 11 if [ ! -f "$JAR" ]; then 21 rm -fr $WORKSPACE/tmp 22 mkdir -p $WORKSPACE/tmp 26 if [ ! -f stringtemplate3-$ST_VERSION.tar.gz ]; then 27 wget http://pypi.python.org/packages/source/s/stringtemplate3/stringtemplate3-$ST_VERSION.tar.gz 29 (cd tmp; tar xzf ../stringtemplate3-$ST_VERSION.tar.gz) 30 (cd tmp/stringtemplate3-$ST_VERSION; python setup.py install --install-lib=$WORKSPACE) 33 if [ ! -f antlr-$ANTLR2_VERSION.tar.gz ]; then [all …]
|
/aosp_15_r20/external/curl/.github/workflows/ |
H A D | linux.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '.circleci/**' 15 - 'appveyor.*' 16 - 'packages/**' 17 - 'plan9/**' 18 - 'projects/**' [all …]
|
/aosp_15_r20/external/ltp/testcases/network/nfsv4/locks/ |
H A D | locktests.py | 24 install="'tar xzf "+SRC+"; cd locks; make `" 34 self.command="mkdir -p "+dir 37 self.command="rm -rf "+dir 41 print("->"+self.command) 58 self.command="'mkdir -p "+mntpoint+"; mount -t nfs4 "+export+" "+mntpoint+"'" 66 self.command="'cd "+path+"; tar xzf "+SRC+"; cd locks; make'" 100 print("locktests.py <-n process -f testfile ><--setup -s fs_server> -c host1, host2, host3 ... ") 101 …print("--setup : setup the configuration, deploy test on other test machines; This option also req… 102 print("-c <machine> : host list to deploy/run/clean the test") 103 print("-s <machine> : NFS server to use to setup the test") [all …]
|
/aosp_15_r20/tools/acloud/public/actions/ |
H A D | remote_instance_trusty_device_factory_test.py | 1 # Copyright 2024 - The Android Open Source Project 7 # http://www.apache.org/licenses/LICENSE-2.0 38 "extra_qemu_flags": ["-machine", "gic-version=2"], "android_image_dir": ".", \ 55 # pylint: disable=protected-access 61 fake_image_name = "/fake/qemu_trusty_arm64-img-eng.username.zip" 102 f"tar -xzf - -C {mock_cvd_utils.GCE_BASE_DIR} " 108 # pylint: disable=protected-access 152 "cvd fetch -credential_source=gce " 153 "-default_build=default_build_id/default_target " 154 "-kernel_build=kernel_build_id/kernel_target " [all …]
|
/aosp_15_r20/external/libxml2/xstc/ |
H A D | Makefile.am | 4 PYSCRIPTS=nist-test.py ms-test.py sun-test.py 7 TARBALL=xsts-2002-01-16.tar.gz 8 TARBALL_2=xsts-2004-01-14.tar.gz 9 TSNAME=xmlschema2002-01-16 10 TSNAME_2=xmlschema2004-01-14 11 TARBALLURL=http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME)/$(TARBALL) 12 TARBALLURL_2=http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME_2)/$(TARBALL_2) 13 MSTESTDEF=MSXMLSchema1-0-20020116.testSet 14 SUNTESTDEF=SunXMLSchema1-0-20020116.testSet 15 NISTTESTDEF=NISTXMLSchema1-0-20020116.testSet [all …]
|
/aosp_15_r20/external/curl/.circleci/ |
H A D | config.yml | 21 # SPDX-License-Identifier: curl 27 …ersion of CircleCI pipeline process engine. See: https://circleci.com/docs/configuration-reference/ 31 install-cares: 33 - run: 35 sudo apt-get update && sudo apt-get install -y libc-ares-dev 37 install-libssh: 39 - run: 41 sudo apt-get update && sudo apt-get install -y libssh-dev 43 install-deps: 45 - run: [all …]
|
/aosp_15_r20/external/pytorch/.ci/docker/common/ |
H A D | install_vulkan_sdk.sh | 3 set -ex 5 [ -n "${VULKAN_SDK_VERSION}" ] 15 --silent \ 16 --show-error \ 17 --location \ 18 --fail \ 19 --retry 3 \ 20 …--output "${_tmp_vulkansdk_targz}" "https://ossci-android.s3.amazonaws.com/vulkansdk-linux-x86_64-… 22 mkdir -p "${_vulkansdk_dir}" 23 tar -C "${_vulkansdk_dir}" -xzf "${_tmp_vulkansdk_targz}" --strip-components 1 [all …]
|
H A D | install_swiftshader.sh | 3 set -ex 5 [ -n "${SWIFTSHADER}" ] 11 _https_amazon_aws=https://ossci-android.s3.amazonaws.com 15 _swiftshader_file_targz=swiftshader-abe07b943-prebuilt.tar.gz 16 mkdir -p $_swiftshader_dir 19 curl --silent --show-error --location --fail --retry 3 \ 20 --output "${_tmp_swiftshader_targz}" "$_https_amazon_aws/${_swiftshader_file_targz}" 22 tar -C "${_swiftshader_dir}" -xzf "${_tmp_swiftshader_targz}"
|
H A D | install_glibc.sh | 3 set -ex 5 [ -n "$GLIBC_VERSION" ] 6 if [[ -n "$CENTOS_VERSION" ]]; then 7 [ -n "$DEVTOOLSET_VERSION" ] 10 yum install -y wget sed 12 mkdir -p /packages && cd /packages 13 wget -q http://ftp.gnu.org/gnu/glibc/glibc-$GLIBC_VERSION.tar.gz 14 tar xzf glibc-$GLIBC_VERSION.tar.gz 16 cd glibc-$GLIBC_VERSION 17 …sed -i 's/$name ne "nss_test1"/$name ne "nss_test1" \&\& $name ne "nss_test2"/' scripts/test-insta… [all …]
|
/aosp_15_r20/external/fmtlib/support/ |
H A D | Vagrantfile | 1 # -*- mode: ruby -*- 4 # A vagrant config for testing against gcc-4.8. 6 config.vm.box = "bento/ubuntu-22.04-arm64" 12 config.vm.provision "shell", inline: <<-SHELL 13 apt-get update 14 apt-get install -y g++ make wget git 15 …wget -q https://github.com/Kitware/CMake/releases/download/v3.26.0/cmake-3.26.0-Linux-x86_64.tar.gz 16 tar xzf cmake-3.26.0-Linux-x86_64.tar.gz 17 ln -s `pwd`/cmake-3.26.0-Linux-x86_64/bin/cmake /usr/local/bin
|
/aosp_15_r20/external/mesa3d/.gitlab-ci/ |
H A D | download-git-cache.sh | 4 set -o xtrace 6 # if we run this script outside of gitlab-ci for testing, ensure 8 CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(mktemp -d)/$CI_PROJECT_NAME} 10 if [[ -e $CI_PROJECT_DIR/.git ]] 16 TMP_DIR=$(mktemp -d) 20 -O "$TMP_DIR/$CI_PROJECT_NAME.tar.gz" \ 27 set -e 29 rm -rf "$CI_PROJECT_DIR" 31 mkdir -p "$CI_PROJECT_DIR" 32 tar xzf "$TMP_DIR/$CI_PROJECT_NAME.tar.gz" -C "$CI_PROJECT_DIR" [all …]
|
/aosp_15_r20/external/mtools/ |
H A D | uz.1 | 15 uz \- gunzips and extracts a gzip'd tar'd archive 27 .B tar -xzf
|
/aosp_15_r20/external/skia/infra/bots/assets/go/ |
H A D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 24 GO_URL = "https://go.dev/dl/go1.21.5.linux-amd64.tar.gz" 32 subprocess.check_call(["wget", '-O', zipfile, GO_URL]) 33 subprocess.check_call(["tar", "-xzf", zipfile, "-C", target_dir]) 37 parser.add_argument('--target_dir', '-t', required=True)
|
/aosp_15_r20/external/capstone/.github/workflows/ |
H A D | coverity-scan.yml | 1 name: coverity-scan 4 - cron: '0 18 * * 1,4' # Bi-weekly at 18:00 UTC on Monday and Thursday 8 runs-on: ubuntu-latest 10 - uses: actions/checkout@v1 11 - name: Download Coverity Build Tool 13 …wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=capstone-… 14 mkdir cov-analysis-linux64 15 tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64 19 - name: Fixed world writable dirs 21 chmod go-w $HOME [all …]
|
/aosp_15_r20/external/skia/infra/bots/assets/cockroachdb/ |
H A D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 24 URL = "https://binaries.cockroachdb.com/cockroach-v20.2.8.linux-amd64.tgz" 30 p2 = subprocess.Popen(["tar", "-xzf" "-"], stdin=p1.stdout) 33 shutil.move('./cockroach-v20.2.8.linux-amd64/cockroach', target_dir) 38 parser.add_argument('--target_dir', '-t', required=True)
|
/aosp_15_r20/external/tensorflow/tensorflow/tools/ci_build/install/ |
H A D | install_python37.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 18 wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz 19 tar xzf Python-3.7.0.tgz 20 cd Python-3.7.0 21 ./configure --enable-optimizations 23 rm /usr/src/Python-3.7.0.tgz
|
H A D | install_golang_centos.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 17 set -ex 19 GOLANG_URL="https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz" 24 tar -xzf go1.12.6.linux-amd64.tar.gz 26 rm /usr/src/go1.12.6.linux-amd64.tar.gz
|