rust-lang-ja / ac-library-rs

ac-library-rs is a rust port of AtCoder Library (ACL).
Creative Commons Zero v1.0 Universal
223 stars 26 forks source link

Modify `test-expand.sh` so that `test` binary is generated as a tmp file #134

Open TonalidadeHidrica opened 1 year ago

TonalidadeHidrica commented 1 year ago

Currently, .github/workflows/test-expand.sh runs rustc that creates a binary named test in the current working directory. This is a bit troublesome when testing locally because it creates an untracked binary file in the repository. Woo, dangerous. Let's set a option so that rustc generates a binary in the /tmp directory instead!