mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Auto merge of #23415 - servo:jdm-patch-48, r=SimonSapin
Make net.generic.worker a LaunchDaemon Based on my reading in https://www.launchd.info/ I don't believe it should be a LaunchAgent, since it runs for another user than the one that is logged in. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23415) <!-- Reviewable:end -->
This commit is contained in:
commit
32ddc420a4
2 changed files with 15 additions and 5 deletions
|
@ -228,7 +228,7 @@ def macos_unit():
|
|||
macos_build_task("Dev build + unit tests")
|
||||
.with_treeherder("macOS x64", "Unit")
|
||||
.with_script("""
|
||||
./mach build --dev
|
||||
./mach build --dev --verbose
|
||||
./mach test-unit
|
||||
./mach package --dev
|
||||
./etc/ci/lockfile_changed.sh
|
||||
|
@ -264,7 +264,7 @@ def android_arm32_dev_from_macos():
|
|||
export HOST_CC="$(brew --prefix llvm)/bin/clang"
|
||||
export HOST_CXX="$(brew --prefix llvm)/bin/clang++"
|
||||
./mach bootstrap-android --accept-all-licences --build
|
||||
./mach build --android --dev
|
||||
./mach build --android --dev --verbose
|
||||
""")
|
||||
.find_or_create("android_arm32_dev.macos." + CONFIG.git_sha)
|
||||
)
|
||||
|
@ -509,7 +509,7 @@ def macos_wpt():
|
|||
macos_build_task("Release build")
|
||||
.with_treeherder("macOS x64", "Release")
|
||||
.with_script("""
|
||||
./mach build --release
|
||||
./mach build --release --verbose
|
||||
./etc/ci/lockfile_changed.sh
|
||||
tar -czf target.tar.gz \
|
||||
target/release/servo \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue