ci: add RUSTFLAGS environment variable to CI workflows

- Introduced RUSTFLAGS environment variable in Python, Rust, and WASM CI workflows to override target-cpu settings from .cargo/config.toml, ensuring consistent build configurations across different environments.
This commit is contained in:
Pratik Bhadane
2026-04-02 17:05:14 +05:30
parent 500716177e
commit 0ee5f246ed
3 changed files with 14 additions and 0 deletions
+2
View File
@@ -10,6 +10,8 @@ jobs:
wasm:
name: WASM (test + build + bench)
runs-on: ubuntu-latest
env:
RUSTFLAGS: "" # override target-cpu=native from .cargo/config.toml
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6