Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: cbor benchmarks #208

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ test-e2e: build-s3-browser-bundle
build-s3-browser-bundle:
node ./clients/client-s3/test/browser-build/esbuild

cbor:
(cd codegen && ./gradlew :generic-client-test-codegen:build)
(cd codegen/generic-client-test-codegen/build/smithyprojections/generic-client-test-codegen/aws-json-echo-service/typescript-codegen \
&& touch yarn.lock && yarn && yarn build)
(cd codegen/generic-client-test-codegen/build/smithyprojections/generic-client-test-codegen/aws-cbor-echo-service/typescript-codegen \
&& touch yarn.lock && yarn && yarn build)

# removes nested node_modules folders
clean-nested:
rm -rf ./lib/*/node_modules
Expand Down
10 changes: 10 additions & 0 deletions clients/client-cloudwatch-cbor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/node_modules/
/build/
/coverage/
/docs/
/dist-*
*.tsbuildinfo
*.tgz
*.log
package-lock.json

Loading