This repository was archived by the owner on Feb 6, 2026. It is now read-only.
feat(ci): enable release and debug builds#3498
Merged
si-bors-ng[bot] merged 1 commit intomainfrom Apr 3, 2024
Merged
Conversation
3917006 to
cbc8842
Compare
nickgerace
approved these changes
Apr 2, 2024
Contributor
|
bors merge |
si-bors-ng Bot
added a commit
that referenced
this pull request
Apr 3, 2024
3498: feat(ci): enable release and debug builds r=stack72 a=adamhjk This PR enables release and debug builds for buck2. By default, we will always do debug builds (or, more accurately, whatever the rustc compiler thinks the defaults should be). If you want to build for release or debug explicitly, you can do that with: ``` $ buck2 build `@//mode/release` //bin/sdf:sdf ``` And the result will be compiled with release optimizations. You can also use ``@//mode/debug`` if you want. Those files are just ways of DRY-ing up the configuration options - you could also pass them directly on the command line. We can add as many configuration options as we want, and as many toolchain configurations as we want, by extending the options in the `//config` tree, adding a new toolchain statement, and extending the select statement for the `:rust` alias. <img src="https://media1.giphy.com/media/MFg6kb46z2tNOEIBox/giphy.gif"/> Co-authored-by: Adam Jacob <adam@systeminit.com>
Contributor
|
Build failed: |
This PR enables release and debug builds for buck2. By default, we will always do debug builds (or, more accurately, whatever the rustc compiler thinks the defaults should be). If you want to build for release or debug explicitly, you can do that with: ``` $ buck2 build @//mode/release //bin/sdf:sdf ``` And the result will be compiled with release optimizations. You can also use `@//mode/debug` if you want. Those files are just ways of DRY-ing up the configuration options - you could also pass them directly on the command line. We can add as many configuration options as we want, and as many toolchain configurations as we want, by extending the options in the `//config` tree, adding a new toolchain statement, and extending the select statement for the `:rust` alias.
cbc8842 to
22e0fc5
Compare
Contributor
Author
|
bors merge |
Contributor
|
Build succeeded: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR enables release and debug builds for buck2. By default, we will always do debug builds (or, more accurately, whatever the rustc compiler thinks the defaults should be).
If you want to build for release or debug explicitly, you can do that with:
And the result will be compiled with release optimizations. You can also use
@//mode/debugif you want. Those files are just ways of DRY-ing up the configuration options - you could also pass them directly on the command line.We can add as many configuration options as we want, and as many toolchain configurations as we want, by extending the options in the
//configtree, adding a new toolchain statement, and extending the select statement for the:rustalias.