Skip to content

Commit 44b0b52

Browse files
committed
chore: fix CI and update file from migration
1 parent 3389c8b commit 44b0b52

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
/handwritten/cloud-profiler @googleapis/cloud-profiler-team
1212
/handwritten/storage @googleapis/gcs-team
1313
/handwritten/firestore @googleapis/firestore-team
14-
/handwritten/spanner @googleapis/spanner-team/core/projectify jsteam-handwritten-libraries
14+
/handwritten/spanner @googleapis/spanner-team

ci/run_conditional_tests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ fi
7171
# necessary.
7272

7373
subdirs=(
74+
core
7475
containers
7576
packages
7677
handwritten
@@ -96,8 +97,8 @@ for subdir in ${subdirs[@]}; do
9697
echo "Skipping ${d} (explicitly ignored in ignore.json)"
9798
continue
9899
fi
99-
if [[ "${subdir}" == "handwritten" && ("${TEST_TYPE}" == "samples" || "${TEST_TYPE}" == "system") ]]; then
100-
echo "Skipping ${TEST_TYPE} test for handwritten package ${d}"
100+
if [[ ("${subdir}" == "handwritten" || "${subdir}" == "core") && ("${TEST_TYPE}" == "samples" || "${TEST_TYPE}" == "system") ]]; then
101+
echo "Skipping ${TEST_TYPE} test for handwritten and core packages: ${d}"
101102
continue
102103
fi
103104

core/projectify/owlbot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
import synthtool.gcp as gcp
1616

1717
common_templates = gcp.CommonTemplates()
18-
templates = common_templates.node_library()
19-
s.copy(sources=templates, excludes=["LICENSE", "README.md", ".github/ISSUE_TEMPLATE", ".github/scripts", ".kokoro", ".github/workflows/issues-no-repro.yaml", ".jsdoc.js"])
18+
templates = common_templates.node_mono_repo_library(relative_dir="core/projectify")
19+
s.copy(sources=templates, excludes=["LICENSE", "README.md", ".github/ISSUE_TEMPLATE", ".github/scripts", ".kokoro", ".jsdoc.js"])

core/projectify/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@
1919
"pretest": "npm run compile",
2020
"docs": "jsdoc -c .jsdoc.js",
2121
"presystem-test": "npm run compile",
22-
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
2322
"system-test": "mocha build/system-test",
2423
"docs-test": "linkinator docs",
2524
"predocs-test": "npm run docs",
26-
"prelint": "cd samples; npm link ../; npm install",
2725
"precompile": "gts clean"
2826
},
2927
"keywords": [],

release-please-submodules.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"commit-batch-size": 1,
33
"include-component-in-tag": true,
44
"packages": {
5-
"core/projectify": {},
5+
"core/projectify": {
6+
"component": "projectify"
7+
},
68
"handwritten/bigquery": {
79
"component": "bigquery"
810
},

0 commit comments

Comments
 (0)