Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Only pass cafile argument to urlopen in Python versions that support it. | Simon Sapin | 2017-10-19 | 1 | -1/+15 |
| | |||||
* | Bootstrap: use 'certifi' package to obtain up-to-date root CA list. | Simon Sapin | 2017-10-19 | 1 | -1/+2 |
| | | | | | The default root CA store on our Windows CI builders does not trust static.rust-lang.org | ||||
* | Bootstrap: print URLs being downloaded. | Simon Sapin | 2017-10-18 | 1 | -2/+2 |
| | |||||
* | Auto merge of #18145 - tigercosmos:master, r=larsbergstrom | bors-servo | 2017-10-16 | 1 | -15/+2 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix windows build issue #18055 <!-- Please describe your changes on the following line: --> With some reasons, the windows and VS environment do not set the `env("PLATFORM")` variable. So, there's no need to check the variable, and set `os_type` equl to `pc-windows-msvc` as default. Then the script can get correct url to download `rustc`. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #18055 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/18145) <!-- Reviewable:end --> | ||||
| * | fix windows build issue | tigercosmos | 2017-08-19 | 1 | -15/+2 |
| | | |||||
* | | Handle aarch64 cpu_type | Hiroshi Hatake | 2017-08-24 | 1 | -0/+2 |
|/ | |||||
* | Move delete function to util.py | Aneesh Agrawal | 2017-04-18 | 1 | -5/+13 |
| | | | | This makes it easier to reuse in other places. | ||||
* | Remove more deprecated Windows GNU code/docs | Aneesh Agrawal | 2017-04-16 | 1 | -4/+0 |
| | |||||
* | Add support for Visual Studio 2017 | UK992 | 2017-04-11 | 1 | -1/+1 |
| | |||||
* | Disable LLVM assertions by default, on supported platforms. | Simon Sapin | 2017-02-16 | 1 | -1/+5 |
| | | | | But keep them on linux-dev CI. | ||||
* | Avoid hardcoded references to rustc in download() | Aneesh Agrawal | 2017-01-15 | 1 | -5/+5 |
| | | | | | | | Use the `desc` parameter instead to make the error messages customized for the actual download. Also use new-style format strings. | ||||
* | Create a util.py Python module for common functions | Aneesh Agrawal | 2017-01-15 | 1 | -0/+151 |
Extracting these functions helps avoid circular dependencies, and make them easier to find/reuse. |