We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe608c7 commit fa9ec1aCopy full SHA for fa9ec1a
.github/workflows/release.yml
@@ -55,6 +55,11 @@ jobs:
55
./y.sh prepare --only-libcore
56
EMBED_LTO_BITCODE=1 ./y.sh build --sysroot --release --release-sysroot
57
cargo test
58
+
59
+ - name: Run y.sh cargo build
60
+ run: |
61
+ CHANNEL="release" ./y.sh cargo build --release --manifest-path tests/hello-world/Cargo.toml
62
+ # TODO: grep the asm output for "call my_func" and fail if it is found.
63
./y.sh clean all
64
65
- name: Prepare dependencies
tests/hello-world/Cargo.toml
@@ -7,3 +7,6 @@ mylib = { path = "mylib" }
7
8
[profile.dev]
9
lto = "thin"
10
11
+[profile.release]
12
+lto = "fat"
0 commit comments