Add build github actions workflows for mac/windows/linux.

This commit is contained in:
Josh Matthews 2020-11-27 09:05:59 -05:00
parent a59c5bbb6b
commit 3ce71cda73
4 changed files with 2006 additions and 1 deletions

View file

@ -21,7 +21,7 @@ mod build_gecko {
lazy_static! {
pub static ref PYTHON: String = env::var("PYTHON3").ok().unwrap_or_else(|| {
let candidates = if cfg!(windows) {
["python3.exe"]
["python.exe"]
} else {
["python3"]
};