Skip to content

Enable basic plugins via cli toolchain #1251

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

Draft
wants to merge 32 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1d71c79
Create a new "bootstrap" toolchain.
restingbull Dec 14, 2024
125ceb7
Add neverlink and export support.
restingbull Dec 14, 2024
c66eed3
Able to compile with 2.1.0.
restingbull Dec 14, 2024
23ecc6d
Fix naming of outputs in test.
restingbull Dec 16, 2024
e0f20d5
Add cli toolchain to workspace
restingbull Dec 16, 2024
c712839
Cleanup lint
restingbull Dec 16, 2024
10b48d6
Update maven deps
restingbull Dec 16, 2024
3b7bffd
Workaround change in reflection resolution in 2.1.0. Fixed in 2.1.20
restingbull Dec 17, 2024
3f80a00
Pass stdlib to clit compiler runtime.
restingbull Dec 17, 2024
1a70251
Remove integration test as examples now covers all cases.
restingbull Dec 17, 2024
b036cf2
Include coroutines, as the compiler needs them to run
restingbull Dec 17, 2024
7a13ebc
Remove kotlin released references.
restingbull Dec 17, 2024
e2c7fc0
Add 2.1 capabilities
restingbull Dec 17, 2024
2ea9a15
Update docs, add provider to the release
restingbull Dec 18, 2024
a4331ff
Update serializer core
restingbull Dec 18, 2024
435e900
Fix serialization lib
restingbull Dec 18, 2024
b643a76
Clean up deps test
restingbull Dec 18, 2024
52eaa8b
Update defaults and add toolchain to actions
restingbull Dec 18, 2024
64f9ac3
Shutdown and clean. Something seems rotten
restingbull Dec 18, 2024
a913f0e
enable toolchain debug and fix toUpserCase;
restingbull Dec 18, 2024
5f09d1b
Update runner to use override_module when correct
restingbull Dec 18, 2024
79b04ce
switch off rbe
restingbull Dec 19, 2024
fb7c090
Fix workspace cycles
restingbull Dec 19, 2024
0b7da29
Fix ordering on deps, update compose version
restingbull Dec 19, 2024
ae72932
Map compse versions, fix deps toolchain version
restingbull Dec 19, 2024
b0b3abd
update jetpack again
restingbull Dec 19, 2024
fbd257c
Finally get a working set of libraries
restingbull Dec 20, 2024
aca7ee1
Add pnning mechanism and hard code workspace
restingbull Dec 20, 2024
ff12c2c
Remove stdlib. Should pulled from toolchain
restingbull Dec 20, 2024
c40d2e5
Work around https://github.com/bazelbuild/bazel/issues/21225
restingbull Dec 20, 2024
b25b69d
Enable basic plugins via cli toolchain
restingbull Dec 23, 2024
caefd12
WIP
restingbull Dec 23, 2024
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
enable toolchain debug and fix toUpserCase;
  • Loading branch information
restingbull committed Dec 21, 2024
commit a913f0e41ff41a2245da7331798b2ffeb07e2c17
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ data class MyType(
}

internal fun String.camelCase() = this.split("_").joinToString("") {
"${it[0].toUpperCase()}${it.substring(1)}"
"${it[0].upperCase()}${it.substring(1)}"
}
3 changes: 2 additions & 1 deletion examples/deps/.bazelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
common --incompatible_enable_android_toolchain_resolution
common --enable_workspace=true
common --enable_bzlmod=false
common --android_platforms=//:arm64-v8a
common --android_platforms=//:arm64-v8a
common --toolchain_resolution_debug=.*