We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a66180e commit 2fc4cd8Copy full SHA for 2fc4cd8
2 files changed
.github/workflows/java-bigquerystorage-ci.yaml
@@ -9,6 +9,8 @@ name: java-bigquerystorage ci
9
defaults:
10
run:
11
working-directory: java-bigquerystorage
12
+env:
13
+ BUILD_SUBDIR: java-bigquerystorage
14
jobs:
15
filter:
16
runs-on: ubuntu-latest
.kokoro/build.sh
@@ -35,6 +35,12 @@ fi
35
36
RETURN_CODE=0
37
38
+if [[ -n "${BUILD_SUBDIR}" ]]
39
+then
40
+ echo "Running in subdir: ${BUILD_SUBDIR}"
41
+ pushd "${BUILD_SUBDIR}"
42
+fi
43
+
44
case ${JOB_TYPE} in
45
test)
46
retry_with_backoff 3 10 \
@@ -125,6 +131,12 @@ case ${JOB_TYPE} in
125
131
126
132
esac
127
133
134
135
136
+ echo "restoring directory"
137
+ popd
138
139
128
140
if [ "${REPORT_COVERAGE}" == "true" ]; then
129
141
bash ${KOKORO_GFILE_DIR}/codecov.sh
130
142
fi
0 commit comments