tulsi icon indicating copy to clipboard operation
tulsi copied to clipboard

An Xcode Project Generator For Bazel

Results 81 tulsi issues
Sort by recently updated
recently updated
newest added

Hi! Wasn't sure if I should post this as a comment on https://github.com/bazelbuild/tulsi/issues/16 or open a new issue. If you think this belongs on https://github.com/bazelbuild/tulsi/issues/16 I'm happy to close this...

Works fine when running App on device or any target on Simulator, but fails when running UITests on device. Failure reads: /Users/gl/chaos/src/prototype-player/client/ios:0: Failed to extract Authority from Executable=/Library/Developer/Xcode/DerivedData/app_uitests-dwpmonsrcnhlqpcszsglndmnoour/Build/Products/__TulsiTestRunner_Debug-iphoneos/app_uitests-Runner.app/PlugIns/app_uitests.xctest/app_uitests Showing Recent...

Currently, Tulsi [hardcoded a `--strip=always` flag in release mode](https://github.com/bazelbuild/tulsi/blob/c7609aa3914123f1b5f1a6b5caff551617a325c9/src/TulsiGenerator/BazelSettingsProvider.swift#L137). This makes us unable to debug a release build in XCode. But sometimes, we need to debug a release build. For...

Minimal sample project to reproduce the issue: https://github.com/blairmatte/test_tulsi/tree/master The project has one c++ dependency defined in `WORKSPACE` as a `new_git_repository`. The repo includes a `.tulsiproj` with one config called `main`...

WORKSPACE ``` load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # iOS Rule git_repository( name = "build_bazel_rules_ios", remote = "https://github.com/bazel-ios/rules_ios.git", branch = "master", ) load( "@build_bazel_rules_ios//rules:repositories.bzl", "rules_ios_dependencies" ) rules_ios_dependencies() load( "@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies", ) apple_rules_dependencies()...

When I use apple_framework, tulsi generate xcode project is error.

I use tulsi to generate xcode project for mediapipe macOS example app, but it failed with this error. ![Snip20220706_2](https://user-images.githubusercontent.com/1617427/177531261-c1e18d1e-0719-4461-8fb5-84ab65a05d8d.png) ![Snip20220706_3](https://user-images.githubusercontent.com/1617427/177531293-fa652210-9d40-4f87-b932-9ef9104b5028.png) ![Snip20220706_4](https://user-images.githubusercontent.com/1617427/177531333-249ee2dc-901e-49a0-83d2-28909458a4c7.png)

I'm following the tutorial: **Build an iOS Application**: https://docs.bazel.build/versions/master/tutorial/ios-app.html, and failed in step: ['**Run and debug the app in the simulator**'](https://docs.bazel.build/versions/master/tutorial/ios-app.html#run-and-debug-the-app-in-the-simulator). Tulsi was built and installed successfully, but error occurs...

➜ tulsi git:(master) ✗ sh build_and_run.sh INFO: Build option --macos_cpus has changed, discarding analysis cache. INFO: Analyzed target //:tulsi (0 packages loaded, 1203 targets configured). INFO: Found 1 target... ERROR:...