Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
test --test_output=errors
common --experimental_generate_llvm_lcov
coverage --combined_report=lcov

# honor the setting of `skipLibCheck` in the tsconfig.json file
common --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
Expand Down
22 changes: 4 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ executors:
docker:
- image: docker.io/playerui/bazel-docker-slim:18
working_directory: ~/tools
resource_class: xlarge
resource_class: medium
environment:
TZ: "/usr/share/zoneinfo/America/Los_Angeles"

Expand All @@ -27,17 +27,12 @@ commands:
- attach_workspace:
at: ~/tools

- restore_cache:
keys:
- v1-bazel-cache-core-{{ .Branch }}-{{ .Revision }}
- v1-bazel-cache-core-{{ .Branch }}
- v1-bazel-cache-core-main

- run: echo "//registry.npmjs.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc
- run: echo -e $GPG_KEY | gpg --import --batch
- run: |
source ~/.bashrc
npx auto shipit --only-graduate-with-release-label -vv

check_branch_status:
description: "Check if the branch is clean after the build"
steps:
Expand All @@ -55,11 +50,8 @@ jobs:
setup:
executor: base
steps:
- checkout

- restore_cache:
keys:
- v1-dependencies-{ { checksum "package.json" }}
- checkout:
method: full

- persist_to_workspace:
root: .
Expand Down Expand Up @@ -99,12 +91,6 @@ jobs:
- attach_workspace:
at: ~/tools

- restore_cache:
keys:
- v1-bazel-cache-core-{{ .Branch }}-{{ .Revision }}
- v1-bazel-cache-core-{{ .Branch }}
- v1-bazel-cache-core-main

- run: |
bazel coverage --config=ci -- $(bazel query "kind(js_test, //...)" --output label 2>/dev/null | tr '\n' ' ')

Expand Down