Skip to content

Commit 6052ffc

Browse files
committed
Re-generate library using /synth.py
1 parent 063ae0f commit 6052ffc

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

.circleci/config.yml

-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ jobs:
6868
environment:
6969
NPM_CONFIG_PREFIX: /home/node/.npm-global
7070
- run: npm test
71-
- run: node_modules/.bin/codecov
72-
7371
node8:
7472
docker:
7573
- image: 'node:8'

.kokoro/common.cfg

+11
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
1313
# Use the trampoline script to run in docker.
1414
build_file: "nodejs-bigtable/.kokoro/trampoline.sh"
1515

16+
# Bring in codecov.io master token into the build as $KOKORO_KEYSTORE_DIR/73713_dpebot_codecov_token
17+
before_action {
18+
fetch_keystore {
19+
keystore_resource {
20+
keystore_config_id: 73713
21+
keyname: "dpebot_codecov_token"
22+
backend_type: FASTCONFIGPUSH
23+
}
24+
}
25+
}
26+
1627
# Configure the docker image for kokoro-trampoline.
1728
env_vars: {
1829
key: "TRAMPOLINE_IMAGE"

.kokoro/test.bat

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
cd /d %~dp0
1818
cd ..
1919

20+
call npm install -g npm@5 || goto :error
21+
2022
call npm install || goto :error
2123
call npm run test || goto :error
2224

.kokoro/test.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ cd $(dirname $0)/..
2222

2323
npm install
2424
npm test
25-
node_modules/.bin/codecov
25+
26+
bash $KOKORO_GFILE_DIR/codecov.sh

codecov.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
codecov:
3+
ci:
4+
- source.cloud.google.com

0 commit comments

Comments
 (0)