We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe608c7 commit fe93ba9Copy full SHA for fe93ba9
.github/workflows/release.yml
@@ -57,6 +57,10 @@ jobs:
57
cargo test
58
./y.sh clean all
59
60
+ - name: Run y.sh cargo build
61
+ run: |
62
+ ./y.sh cargo build --release --manifest-path tests/hello-world/Cargo.toml
63
+
64
- name: Prepare dependencies
65
run: |
66
git config --global user.email "[email protected]"
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