blob: 7e70838b8b7b54a4bc905b6ae5cef6b5cbcc9723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
#set -x
export AGLBRANCH=master
export GERRIT_PROJECT="src/xds/xds-server"
export PROJECT_TO_BUILD="xds-server"
#export GERRIT_REFSPEC="refs/changes/99/10799/1"
#export GERRIT_CHANGE_NUMBER="10799"
#export GERRIT_PATCHSET_NUMBER="1"
#export GERRIT_PATCHSET_REVISION="1a1ff962da92aff5a1d3e757710c725e03238458"
export GERRIT_HOST="gerrit.automotivelinux.org"
export GERRIT_PORT="29418"
export -p > env.save
. ../common/include-xds-header.sh
. ../common/include-xds-build-common.sh
source env.save
|