aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-04-27 21:23:04 -0700
committerbors-servo <lbergstrom+bors@mozilla.com>2016-04-27 21:23:04 -0700
commitfbc575407d68a516a2b15a0d1c74150a9011aa9c (patch)
tree62d43a338f67c42fae0ff571a6a11d433abaafce
parent14de06aef077e57ca7fdccaae72551919b7748c4 (diff)
parentc01aa9cce85d7d54199ec36c25e6b88c50b44965 (diff)
downloadservo-fbc575407d68a516a2b15a0d1c74150a9011aa9c.tar.gz
servo-fbc575407d68a516a2b15a0d1c74150a9011aa9c.zip
Auto merge of #10849 - shinglyu:yaml, r=aneeshusa
Move buildbot step to yaml This is a step of https://github.com/servo/saltfs/issues/316 After this patch lands, we'll PR the saltfs code to read from this yaml file, and dynamically generate test steps at runtime. cc @aneeshusa @edunham <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10849) <!-- Reviewable:end -->
-rw-r--r--etc/ci/buildbot_steps.yml67
1 files changed, 67 insertions, 0 deletions
diff --git a/etc/ci/buildbot_steps.yml b/etc/ci/buildbot_steps.yml
new file mode 100644
index 00000000000..2efb8fd67d8
--- /dev/null
+++ b/etc/ci/buildbot_steps.yml
@@ -0,0 +1,67 @@
+mac-rel-wpt:
+ - ./mach build --release
+ - ./mach test-wpt-failure
+ - ./mach test-wpt --release --processes 4 --log-raw test-wpt.log --log-errorsummary wpt-errorsummary.log
+ - ./mach test-wpt --release --binary-arg=--multiprocess --processes 4 --log-raw test-wpt-mp.log --log-errorsummary wpt-mp-errorsummary.log eventsource
+ - ./mach build-cef --release
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+
+mac-dev-unit:
+ - ./mach build --dev
+ - ./mach test-unit
+ - ./mach build-cef
+ - ./mach build-geckolib
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+
+mac-rel-css:
+ - ./mach build --release
+ - ./mach test-css --release --processes 4 --log-raw test-css.log --log-errorsummary css-errorsummary.log
+ - ./mach build-geckolib --release
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+
+linux-dev:
+ - ./mach test-tidy --no-progress
+ - ./mach test-tidy --no-progress --self-test
+ - ./mach build --dev
+ - ./mach test-compiletest
+ - ./mach test-unit
+ - ./mach build-cef
+ - ./mach build-geckolib
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+ - bash ./etc/ci/check_no_unwrap.sh
+
+linux-rel:
+ - ./mach build --release
+ - ./mach test-wpt-failure
+ - ./mach test-wpt --release --processes 24 --log-raw test-wpt.log --log-errorsummary wpt-errorsummary.log
+ - ./mach test-wpt --release --binary-arg=--multiprocess --processes 24 --log-raw test-wpt-mp.log --log-errorsummary wpt-mp-errorsummary.log eventsource
+ - ./mach test-css --release --processes 16 --log-raw test-css.log --log-errorsummary css-errorsummary.log
+ - ./mach build-cef --release
+ - ./mach build-geckolib --release
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+
+android:
+ - ./mach build --android --dev
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+ - python ./etc/ci/check_dynamic_symbols.py
+
+android-nightly:
+ - ./mach build --android --release
+ - ./mach package -r
+ - s3cmd put target/arm-linux-androideabi/release/servo.apk s3://servo-rust/nightly/servo.apk
+
+arm32:
+ - ./mach build --rel --target=arm-unknown-linux-gnueabihf
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh
+
+arm64:
+ - ./mach build --rel --target=aarch64-unknown-linux-gnu
+ - bash ./etc/ci/lockfile_changed.sh
+ - bash ./etc/ci/manifest_changed.sh