aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap_commands.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix doc uploadManish Goregaokar2015-02-031-1/+34
|
* mach clean-snapshots: better no-op outputSimon Sapin2014-12-091-2/+5
|
* Add a `./mach clean-snapshots` command to remove old Cargo and Rust.Simon Sapin2014-12-091-0/+26
| | | | | | | | | | | | | | | Bootstrapping automatically downloads new Rust and Cargo snapshots as needed into versioned directories, but do not remove now-unused versions. This is the desired behavior for `git bisect` to be usable. However, this means that old version keep accumulating, taking up disk space. This adds a mach command to remove snapshots other than the ones currently being used. It is never run automatically. To be safe, the command defaults to only printing what would be removed, and only removes stuff when run with a `-f` argument.
* Download Cargo over HTTPS. Fix #3582.Simon Sapin2014-11-131-2/+1
|
* auto merge of #3902 : mbrubeck/servo/share_directory, r=jdmbors-servo2014-11-051-4/+6
|\ | | | | | | This is @acmiyaguchi's already-reviewed patch from #3388, rebased and squashed onto servo master. Fixes #3353.
| * Automatically update cargo when necessaryMatt Brubeck2014-11-051-3/+5
| |
| * Fixes #3353: rust snapshot downloads to home directoryAnthony Miyaguchi2014-11-051-2/+2
| |
* | Panic when bootstrap downloads failOrvar Segerström2014-11-051-1/+12
|/ | | | | | | | Also hints that 32bit snapshots are unavailable on failure Resolves #3739 fixup! Panic when bootstrap downloads fail
* Add an optional --debug-mozjs argument to `mach build` that enables a ↵Josh Matthews2014-10-241-1/+1
| | | | non-optimized, debug build of mozjs and rust-mozjs. Update the Cargo snapshot to enable new feature support.
* Fetch the Cargo nightly over HTTP.Ms2ger2014-10-061-1/+2
|
* Pin Cargo to the 2014-10-02 nightly.Ms2ger2014-10-061-1/+1
| | | | Relevant to #3580.
* Have the Rust snapshot directory include the Rust version and hash.Simon Sapin2014-09-291-32/+7
| | | | | | | | | | | | | | That way, whenever rust-snapshot-hash changes, mach will look for the Rust snapshot in a different directory and re-boostrap as needed. However, older rust version will be left behind never cleaned up. This is good for git-bisect, but not for disk space: the current snapshot is 618 MB. In the future, we may want `mach clean` or some other comment to remove unused Rust snapshots. CC #3388
* Fix /python/servo code formatting.Simon Sapin2014-09-261-5/+15
| | | | (My editor screams at me for flake8 lint errors.)
* Support dumb terminals in bootstrap downloadsAndreas Tolfsen2014-09-181-2/+5
| | | | | | | | | | | Dumb terminals can only interpret a limited number of control codes, and rewriting the terminal buffer will make `./mach build` very talkative on these terminals. This can be tested by setting the environment variable TERM to "dumb" as such: TERM=dumb ./mach build
* Cargoify servoJack Moffitt2014-09-081-0/+153