Skip to content
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f39ffd9
chore(gapic-generator-typescript): remove bazel dependency from build
GautamSharda Apr 6, 2026
24c6dc3
chore(gapic-generator-typescript): remove bazel dependency from build
GautamSharda Apr 6, 2026
df8f12f
Merge branch 'bazel' of https://github.com/googleapis/google-cloud-no…
GautamSharda Apr 6, 2026
1f7b615
chore: resolve merge conflicts with main
GautamSharda Apr 6, 2026
c121a9e
Merge branch 'main' into bazel
GautamSharda Apr 6, 2026
d3c679a
ci: fix generator tests after bazel removal
GautamSharda Apr 6, 2026
2daccb9
Merge branch 'bazel' of https://github.com/googleapis/google-cloud-no…
GautamSharda Apr 6, 2026
8ef6196
test: fix permission denied error in generator baselines
GautamSharda Apr 7, 2026
32a2130
fix: ensure templates are copied to build dir during compilation
GautamSharda Apr 7, 2026
f0eefc4
fix: rely on system protoc in CI
GautamSharda Apr 7, 2026
ebb1a64
ci: install protoc before running generator tests
GautamSharda Apr 7, 2026
db1eeff
test: provide PROTOC_PATH in CI
GautamSharda Apr 7, 2026
5da5416
fix: ensure protoc-plugin is executed with node
GautamSharda Apr 7, 2026
7e0eac9
ci: execute error conformance plugin with node
GautamSharda Apr 7, 2026
98d0c01
fix: ensure protoc-plugin is executable for protoc
GautamSharda Apr 7, 2026
ff718a1
fix: enable --experimental_editions in protoc
GautamSharda Apr 7, 2026
8027ef8
ci: revert gapic-error-conformance plugin execution
GautamSharda Apr 8, 2026
dd4bbb2
Merge branch 'main' into bazel
GautamSharda Apr 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: revert gapic-error-conformance plugin execution
The gapic-error-conformance tool expects an executable binary or
script for the -plugin flag and fails with 'no such file or directory'
when passed a string like 'node file.js'.

This commit reverts the workflow to use chmod +x on the generated
plugin script so it can be passed directly to the conformance tool,
since we previously updated the typescript code to ensure the script
itself is generated with execution permissions.
  • Loading branch information
GautamSharda committed Apr 8, 2026
commit 8027ef803d2aac2fb58d59fe4cf8b6c19ad8c724
3 changes: 2 additions & 1 deletion .github/workflows/generator-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ jobs:
curl -sSL https://github.com/googleapis/gapic-config-validator/releases/download/v0.6.0/gapic-config-validator-0.6.0-linux-amd64.tar.gz > config-validator.tar.gz
tar xzf config-validator.tar.gz --no-same-owner
chmod +x gapic-error-conformance
./gapic-error-conformance -plugin="node build/typescript/src/protoc-plugin.js"
chmod +x build/typescript/src/protoc-plugin.js
./gapic-error-conformance -plugin="build/typescript/src/protoc-plugin.js"

- name: Prepare baseline artifacts
working-directory: core/generator/gapic-generator-typescript
Expand Down
Loading