olehborysevych commented on code in PR #24614: URL: https://github.com/apache/beam/pull/24614#discussion_r1050491452
########## playground/infrastructure/cloudbuild/playground_examples_ci.sh: ########## @@ -0,0 +1,207 @@ +#!/usr/bin/env bash + +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +export GRADLE_VERSION=7.5.1 +export GO_VERSION=1.18 + +#Install python java8 and dependencies +apt-get update 2>/dev/null | grep packages | cut -d '.' -f 1 +apt update 2>/dev/null | grep packages | cut -d '.' -f 1 +export DEBIAN_FRONTEND=noninteractive +apt-get install -y apt-transport-https ca-certificates software-properties-common curl unzip apt-utils > /dev/null +add-apt-repository -y ppa:deadsnakes/ppa > /dev/null && apt update > /dev/null +apt install -y python3.8 python3.8-distutils python3-pip > /dev/null +apt install --reinstall python3.8-distutils > /dev/null +pip install --upgrade google-api-python-client > /dev/null +python3.8 -m pip install pip --upgrade > /dev/null +ln -s /usr/bin/python3.8 /usr/bin/python > /dev/null +apt install python3.8-venv > /dev/null +pip install -r playground/infrastructure/requirements.txt > /dev/null + +# Install jdk and gradle +apt-get install openjdk-8-jdk -y > /dev/null +curl -L https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -o gradle-${GRADLE_VERSION}-bin.zip > /dev/null +unzip gradle-${GRADLE_VERSION}-bin.zip > /dev/null +export PATH=$PATH:gradle-${GRADLE_VERSION}/bin + +# Install go +curl -OL https://golang.org/dl/go$GO_VERSION.linux-amd64.tar.gz > /dev/null +tar -C /usr/local -xvf go$GO_VERSION.linux-amd64.tar.gz > /dev/null +export PATH=$PATH:/usr/local/go/bin + +# Install Docker +curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - > /dev/null +add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" > /dev/null +apt update 2>/dev/null | grep packages | cut -d '.' -f 1 && apt install -y docker-ce > /dev/null + +export \ +ORIGIN=PG_EXAMPLES \ +STEP=CI \ +SUBDIRS="./learning/katas ./examples ./sdks" \ +GOOGLE_CLOUD_PROJECT=$PROJECT_ID \ +BEAM_ROOT_DIR="." \ +SDK_CONFIG="playground/sdks.yaml" \ +BEAM_EXAMPLE_CATEGORIES="playground/categories.yaml" \ +BEAM_CONCURRENCY=4 \ +BEAM_VERSION=2.43.0 \ Review Comment: Ruslan plese externalise BEAM_VERSION as a JAVA_BEAM_VERSION substitution -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
