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

fix:no matching toolchains:ninja_toolchain #490

Merged
merged 5 commits into from
Aug 20, 2024
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
3 changes: 3 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ common:ci --build_metadata=ROLE=CI --workspace_status_command=./scripts/workspac
common:ci --local_cpu_resources=8
common:ci --local_ram_resources=15000
common:ci --config="release"
common:ci --experimental_remote_build_event_upload=minimal
common:ci --nolegacy_important_outputs

# Circle macos.m1.large.gen1 8 cores 12gb ram
common:ci-mac --config=ci --local_cpu_resources=8 --local_ram_resources=11000

Expand Down
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,11 @@ jobs:
- attach_workspace:
at: ~/player

- run: |
bazel test --config=ci -- $(bazel query 'kind(".*_test", //...) except filter("ios|swiftui", //...)') -//android/demo:android_instrumentation_test
bazel test --config=ci --//android/player:runtime=hermes -- $(bazel query 'kind(".*_test", //...) except filter("ios|swiftui", //...)') -//android/demo:android_instrumentation_test
- run: bazel test --config=ci -- //third_party/hermes/hello:test

- run: bazel test --config=ci -- $(bazel query 'kind(".*_test", //...) except filter("ios|swiftui", //...)') -//android/demo:android_instrumentation_test

- run: bazel test --config=ci --//android/player:runtime=hermes -- $(bazel query 'kind(".*_test", //...) except filter("ios|swiftui", //...)') -//android/demo:android_instrumentation_test

- run:
when: always
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bazel_dep(name = "rules_pkg", version = "1.0.1")
bazel_dep(name = "aspect_rules_ts", version = "2.4.2")

# C++
bazel_dep(name = "rules_foreign_cc", version = "0.10.1")
bazel_dep(name = "rules_foreign_cc", version = "0.11.1")
bazel_dep(name = "googletest", version = "1.14.0")

####### Node.js version #########
Expand Down