1ffe3c632Sopenharmony_ci#!/bin/bash 2ffe3c632Sopenharmony_ci# 3ffe3c632Sopenharmony_ci# Build file to set up and run tests 4ffe3c632Sopenharmony_ci 5ffe3c632Sopenharmony_ciset -ex # exit immediately on error 6ffe3c632Sopenharmony_ci 7ffe3c632Sopenharmony_ci# Change to repo root 8ffe3c632Sopenharmony_cicd $(dirname $0)/../../.. 9ffe3c632Sopenharmony_ci 10ffe3c632Sopenharmony_ci# Run tests under release docker image. 11ffe3c632Sopenharmony_ciexport DOCKERFILE_DIR=kokoro/linux/64-bit 12ffe3c632Sopenharmony_ciexport DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh 13ffe3c632Sopenharmony_ciexport OUTPUT_DIR=testoutput 14ffe3c632Sopenharmony_ciexport TEST_SET="dist_install" 15ffe3c632Sopenharmony_ci./kokoro/linux/build_and_run_docker.sh 16