mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #27865 - servo:github-actions-dev, r=jdm
Add Github Actions workflow for mac/linux/windows builds
This commit is contained in:
commit
5dd0cba51d
7 changed files with 2020 additions and 15 deletions
|
@ -10,7 +10,10 @@ extern crate size_of_test;
|
|||
use layout::Fragment;
|
||||
use layout::SpecificFragmentInfo;
|
||||
|
||||
#[cfg(debug_assertions)]
|
||||
size_of_test!(test_size_of_fragment, Fragment, 176);
|
||||
#[cfg(not(debug_assertions))]
|
||||
size_of_test!(test_size_of_fragment, Fragment, 152);
|
||||
size_of_test!(
|
||||
test_size_of_specific_fragment_info,
|
||||
SpecificFragmentInfo,
|
||||
|
|
|
@ -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"]
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue