From d031d799ce901ae26d65f5d0a4c9cac374736a15 Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Sat, 22 Apr 2017 16:57:14 -0500 Subject: [PATCH] Add a gate setup script This patch set adds in a skeleton setup_gate.sh script in preparation of integration with the OpenStack infra job. Change-Id: I62e84593e50b5e5d8ee04007d5e36cd3116322d8 --- tools/gate/setup_gate.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tools/gate/setup_gate.sh diff --git a/tools/gate/setup_gate.sh b/tools/gate/setup_gate.sh new file mode 100644 index 0000000000..6ebb09f9ae --- /dev/null +++ b/tools/gate/setup_gate.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# +# Licensed 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. + +set -ex + +#TODO(lamt) Need to replace with actual gate logic. Placeholder for now. +env +exit 0 \ No newline at end of file