Commit graph

44139 commits

Author SHA1 Message Date
Maciej Krüger
49fc87f385
extend message about nixOS shell 2021-06-21 09:13:47 +02:00
Maciej Krüger
8e48b6fd74
add NixOS support to mach and automatically re-launch mach in nix-shell 2021-06-04 10:56:41 +02:00
bors-servo
2cade89ede
Auto merge of #28458 - servo:dependabot/cargo/jobserver-0.1.22, r=jdm
Bump jobserver from 0.1.21 to 0.1.22

Bumps [jobserver](https://github.com/alexcrichton/jobserver-rs) from 0.1.21 to 0.1.22.
<details>
<summary>Commits</summary>
<ul>
<li><a href="98be90450a"><code>98be904</code></a> Bump to 0.1.22</li>
<li><a href="eaa0458fe0"><code>eaa0458</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/jobserver-rs/issues/31">#31</a> from the8472/optimistic-read</li>
<li><a href="c8aa5985e1"><code>c8aa598</code></a> Try blocking reads first to avoid thundering herd problem</li>
<li><a href="9d5e6da215"><code>9d5e6da</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/jobserver-rs/issues/29">#29</a> from thirdsgames/patch-1</li>
<li><a href="4fabd551b7"><code>4fabd55</code></a> Update README to clarify contribution conditions</li>
<li><a href="faaa2ebc58"><code>faaa2eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/jobserver-rs/issues/28">#28</a> from lzutao/clippy</li>
<li><a href="1dc00c963f"><code>1dc00c9</code></a> Remove unneeded &quot;extern crate&quot;</li>
<li><a href="df2f7d71b0"><code>df2f7d7</code></a> Some clippy fixes</li>
<li><a href="b9bdabb53f"><code>b9bdabb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/jobserver-rs/issues/26">#26</a> from glandium/j-flag</li>
<li><a href="9bc9b8857f"><code>9bc9b88</code></a> Set the -j flag in make flags on all platforms</li>
<li>See full diff in <a href="https://github.com/alexcrichton/jobserver-rs/compare/0.1.21...0.1.22">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jobserver&package-manager=cargo&previous-version=0.1.21&new-version=0.1.22)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>
2021-05-31 16:28:42 -04:00
bors-servo
5c494eb2b5
Auto merge of #28457 - servo:dependabot/cargo/rayon-core-1.9.1, r=jdm
Bump rayon-core from 1.9.0 to 1.9.1

Bumps [rayon-core](https://github.com/rayon-rs/rayon) from 1.9.0 to 1.9.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rayon-rs/rayon/blob/master/RELEASES.md">rayon-core's changelog</a>.</em></p>
<blockquote>
<h1>Release rayon 1.5.1 / rayon-core 1.9.1 (2021-05-18)</h1>
<ul>
<li>The new <code>in_place_scope</code> and <code>in_place_scope_fifo</code> are variations of <code>scope</code>
and <code>scope_fifo</code>, running the initial non-<code>Send</code> callback directly on the
current thread, rather than moving execution to the thread pool.</li>
<li>With Rust 1.51 or later, arrays now implement <code>IntoParallelIterator</code>.</li>
<li>New implementations of <code>FromParallelIterator</code> make it possible to <code>collect</code>
complicated nestings of items.
<ul>
<li><code>FromParallelIterator&lt;(A, B)&gt; for (FromA, FromB)</code> works like <code>unzip</code>.</li>
<li><code>FromParallelIterator&lt;Either&lt;L, R&gt;&gt; for (A, B)</code> works like <code>partition_map</code>.</li>
</ul>
</li>
<li>Type inference now works better with parallel <code>Range</code> and <code>RangeInclusive</code>.</li>
<li>The implementation of <code>FromParallelIterator</code> and <code>ParallelExtend</code> for
<code>Vec&lt;T&gt;</code> now uses <code>MaybeUninit&lt;T&gt;</code> internally to avoid creating any
references to uninitialized data.</li>
<li><code>ParallelBridge</code> fixed a bug with threads missing available work.</li>
</ul>
<h2>Contributors</h2>
<p>Thanks to all of the contributors for this release!</p>
<ul>
<li><a href="https://github.com/atouchet"><code>@​atouchet</code></a></li>
<li><a href="https://github.com/cuviper"><code>@​cuviper</code></a></li>
<li><a href="https://github.com/Hywan"><code>@​Hywan</code></a></li>
<li><a href="https://github.com/iRaiko"><code>@​iRaiko</code></a></li>
<li><a href="https://github.com/Qwaz"><code>@​Qwaz</code></a></li>
<li><a href="https://github.com/rocallahan"><code>@​rocallahan</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="ebcb09b1dc"><code>ebcb09b</code></a> adjust the latest release date</li>
<li><a href="93d909195b"><code>93d9091</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/860">#860</a></li>
<li><a href="dbc026b5a8"><code>dbc026b</code></a> Release rayon 1.5.1 / rayon-core 1.9.1</li>
<li><a href="87aae49598"><code>87aae49</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/859">#859</a></li>
<li><a href="2e13d8909f"><code>2e13d89</code></a> Update demo dependencies</li>
<li><a href="3c7489e168"><code>3c7489e</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/855">#855</a></li>
<li><a href="0bd4ec6cea"><code>0bd4ec6</code></a> Add <code>in_place_scope_fifo</code></li>
<li><a href="6a01573a18"><code>6a01573</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/844">#844</a></li>
<li><a href="8815e26cf6"><code>8815e26</code></a> Implement in_place_scope: a scope that runs its driver closure on the same th...</li>
<li><a href="aacced8826"><code>aacced8</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/852">#852</a></li>
<li>Additional commits viewable in <a href="https://github.com/rayon-rs/rayon/compare/rayon-core-v1.9.0...rayon-core-v1.9.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon-core&package-manager=cargo&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>
2021-05-31 13:59:17 -04:00
bors-servo
b63ae21d94
Auto merge of #28456 - servo:dependabot/cargo/openssl-probe-0.1.4, r=jdm
Bump openssl-probe from 0.1.2 to 0.1.4

Bumps [openssl-probe](https://github.com/alexcrichton/openssl-probe) from 0.1.2 to 0.1.4.
<details>
<summary>Commits</summary>
<ul>
<li><a href="fc8fd44093"><code>fc8fd44</code></a> Bump to 0.1.4</li>
<li><a href="ec6345aaa6"><code>ec6345a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/openssl-probe/issues/18">#18</a> from coolreader18/fix-breaking-change</li>
<li><a href="b63c0d9acc"><code>b63c0d9</code></a> In probe(), don't accept a path from an env variable if it doesn't exist</li>
<li><a href="42b4d32baf"><code>42b4d32</code></a> Various code style improvements</li>
<li><a href="2ba4580444"><code>2ba4580</code></a> Fix breaking change in 0.1.3</li>
<li><a href="029e3590e7"><code>029e359</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/openssl-probe/issues/17">#17</a> from alexcrichton/dependabot/add-v2-config-file</li>
<li><a href="42742b6120"><code>42742b6</code></a> Upgrade to GitHub-native Dependabot</li>
<li><a href="ac9c261ca8"><code>ac9c261</code></a> Bump to 0.1.3</li>
<li><a href="7fc1c265aa"><code>7fc1c26</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/openssl-probe/issues/15">#15</a> from khorolets/feature/support-macports</li>
<li><a href="a3bd6d0e4c"><code>a3bd6d0</code></a> Add macports curl-ca-bundle support (path)</li>
<li>Additional commits viewable in <a href="https://github.com/alexcrichton/openssl-probe/compare/0.1.2...0.1.4">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl-probe&package-manager=cargo&previous-version=0.1.2&new-version=0.1.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>
2021-05-31 11:48:41 -04:00
bors-servo
975c1aed17
Auto merge of #28454 - mkg20001:nixos, r=jdm
add etc/shell.nix for nix/nixOS and instructions - fixes #10468

<!-- Please describe your changes on the following line: -->

This adds instructions for building servo on nixOS and the required shell.nix to prepare the environment

---
<!-- 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
- [x] These changes fix #10468 (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because they relate to adding a new build environment, not any servo code

<!-- 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. -->
2021-05-31 09:04:43 -04:00
dependabot[bot]
3df9dcbdf0
Bump jobserver from 0.1.21 to 0.1.22
Bumps [jobserver](https://github.com/alexcrichton/jobserver-rs) from 0.1.21 to 0.1.22.
- [Release notes](https://github.com/alexcrichton/jobserver-rs/releases)
- [Commits](https://github.com/alexcrichton/jobserver-rs/compare/0.1.21...0.1.22)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-31 08:00:49 +00:00
dependabot[bot]
0bf3706672
Bump rayon-core from 1.9.0 to 1.9.1
Bumps [rayon-core](https://github.com/rayon-rs/rayon) from 1.9.0 to 1.9.1.
- [Release notes](https://github.com/rayon-rs/rayon/releases)
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.9.0...rayon-core-v1.9.1)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-31 07:59:55 +00:00
dependabot[bot]
1e6455a208
Bump openssl-probe from 0.1.2 to 0.1.4
Bumps [openssl-probe](https://github.com/alexcrichton/openssl-probe) from 0.1.2 to 0.1.4.
- [Release notes](https://github.com/alexcrichton/openssl-probe/releases)
- [Commits](https://github.com/alexcrichton/openssl-probe/compare/0.1.2...0.1.4)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-31 07:59:23 +00:00
Maciej Krüger
9d0b06ac54
add etc/shell.nix for nix/nixOS 2021-05-31 00:28:37 +02:00
Maciej Krüger
2a02e017a4
add nixOS instructions to README 2021-05-31 00:13:22 +02:00
bors-servo
d167344645
Auto merge of #28452 - servo:uwp-build, r=jdm
Add UWP builds to github actions.

Fixes #28278. Disables all remaining taskcluster jobs, which are failing or covered by existing github actions.
2021-05-29 16:06:22 -04:00
Josh Matthews
629953c622 Disable remaining taskcluster jobs. 2021-05-29 16:05:02 -04:00
Josh Matthews
fe25aef578 Add missing CI checks. 2021-05-29 16:05:02 -04:00
Josh Matthews
e2c240887d Disable UWP taskcluster jobs. 2021-05-29 16:05:02 -04:00
Josh Matthews
172274d484 Add UWP builds to github actions. 2021-05-29 16:05:02 -04:00
bors-servo
88843b289d
Auto merge of #28430 - servo:dependabot/cargo/openssl-0.10.34, r=jdm
Bump openssl from 0.10.33 to 0.10.34

Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.33 to 0.10.34.
<details>
<summary>Commits</summary>
<ul>
<li><a href="ffec25a7ee"><code>ffec25a</code></a> Release openssl v0.10.34</li>
<li><a href="f93a0eff55"><code>f93a0ef</code></a> Release openssl-sys v0.9.62</li>
<li><a href="11957f5413"><code>11957f5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sfackler/rust-openssl/issues/1459">#1459</a> from vishwin/master</li>
<li><a href="ad3995dc15"><code>ad3995d</code></a> Re-enable SRTP tests in LibreSSL</li>
<li><a href="81a25321aa"><code>81a2532</code></a> LibreSSL 3.3.2 uses different values for SSL_OP_NO_DTLSv1{,_2}</li>
<li><a href="3d0bb3f463"><code>3d0bb3f</code></a> Expose DTLS support in LibreSSL 3.3.2</li>
<li><a href="a3b3ad16f6"><code>a3b3ad1</code></a> Add cfgs for LibreSSL 3.3.2</li>
<li><a href="ef515d7cbd"><code>ef515d7</code></a> Bump LibreSSL to 3.3.2</li>
<li><a href="127413a8ae"><code>127413a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sfackler/rust-openssl/issues/1450">#1450</a> from puiterwijk/ec_coordinates</li>
<li><a href="93ed05cd36"><code>93ed05c</code></a> ec: Add EcKey affine_coordinates</li>
<li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.33...openssl-v0.10.34">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.33&new-version=0.10.34)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>
2021-05-29 11:16:47 -04:00
bors-servo
e0fe01d78b
Auto merge of #28441 - servo:fix-win-nightly, r=jdm
Fix windows nightly job
2021-05-29 06:50:04 -04:00
bors-servo
dda406156f
Auto merge of #28448 - servo:jdm-patch-46, r=jdm
Disable intermittent unit tests
2021-05-28 21:46:33 -04:00
Josh Matthews
eeec647120
Fix tidy error. 2021-05-28 10:39:42 -04:00
Josh Matthews
3fce671f61
Disable warnings on windows. 2021-05-28 00:40:26 -04:00
Josh Matthews
a883b594cc
Disable fetch tests on windows. 2021-05-27 23:30:41 -04:00
Josh Matthews
8583e505c8
Don't error on unused imports. 2021-05-27 21:48:31 -04:00
Josh Matthews
46de44340f
Disable more unit tests for windows. 2021-05-27 19:45:17 -04:00
Josh Matthews
de22668748
Disable all http_loader unit tests on windows. 2021-05-27 00:07:13 -04:00
Josh Matthews
1a1590fd53
Disable intermittent unit tests on macos. 2021-05-26 19:32:30 -04:00
Josh Matthews
5d5f9a0a31
Disable intermittent unit test. 2021-05-26 19:31:17 -04:00
Josh Matthews
1effa3a909 Use different download/unpacking mechanism. 2021-05-25 23:18:12 -04:00
bors-servo
07f355a2e7
Auto merge of #28435 - servo:dependabot/cargo/urlencoding-1.3.3, r=jdm
Bump urlencoding from 1.1.1 to 1.3.3

Bumps [urlencoding](https://github.com/kornelski/rust_urlencoding) from 1.1.1 to 1.3.3.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/kornelski/rust_urlencoding/commits">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=urlencoding&package-manager=cargo&previous-version=1.1.1&new-version=1.3.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>
2021-05-25 21:58:06 -04:00
Josh Matthews
e8e31e8011 Download wix binaries for packaging. 2021-05-25 17:54:30 -04:00
Josh Matthews
b61f992592 Hardcode Windows working directory. 2021-05-25 17:46:38 -04:00
bors-servo
6fb584b2b3
Auto merge of #28439 - servo:fix-docs2, r=jdm
Fix doc upload job
2021-05-25 12:58:48 -04:00
Josh Matthews
96315e0193 Use master branch for github docs push. 2021-05-25 11:59:38 -04:00
Josh Matthews
d75150b162 Split nightly rustc into separate workflow. 2021-05-25 11:08:55 -04:00
bors-servo
b4622e0546
Auto merge of #28436 - jdm:fix-docs, r=jdm
Fix Github Actions doc builds

Fix #28423.
2021-05-24 20:22:14 -04:00
Josh Matthews
4138d04186 Fail CI if workflow needs regenerating. 2021-05-24 20:19:18 -04:00
Josh Matthews
3237f3852c Add limited job that runs against pull requests. 2021-05-24 20:14:42 -04:00
Josh Matthews
0294838d73 Fix windows nightly working directory. 2021-05-24 20:09:00 -04:00
Josh Matthews
7a593bcc38 Set up virtualenv before compiling docs. 2021-05-24 19:40:48 -04:00
Josh Matthews
dcc35c4e9a Regenerate CI workflow. 2021-05-24 19:39:41 -04:00
bors-servo
90b1ad4d1f
Auto merge of #28424 - jdm:nightlies, r=jdm
Replace more taskcluster jobs

Fixes #28283. Fixes #28282. Fixes #28279.
2021-05-24 16:41:44 -04:00
Josh Matthews
89069e8e19 Remove duplicate linux jobs from taskcluster. 2021-05-24 16:39:00 -04:00
dependabot[bot]
6232ba191f
Bump urlencoding from 1.1.1 to 1.3.3
Bumps [urlencoding](https://github.com/kornelski/rust_urlencoding) from 1.1.1 to 1.3.3.
- [Release notes](https://github.com/kornelski/rust_urlencoding/releases)
- [Commits](https://github.com/kornelski/rust_urlencoding/commits)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-24 07:55:08 +00:00
dependabot[bot]
8c348cf3bc
Bump openssl from 0.10.33 to 0.10.34
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.33 to 0.10.34.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.33...openssl-v0.10.34)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-24 07:53:19 +00:00
Josh Matthews
b391e3aa57 Remove last mac jobs from taskcluster. 2021-05-23 13:39:08 -04:00
bors-servo
a2f3a0b7aa
Auto merge of #28419 - dominiccooney:py3bat, r=jdm
Make mach.bat request Python 3

The mach Python script no longer supports Python 2, so don't use
Python 2.

Fixes #28379

Signed-off-by: Dominic Cooney <dominic.cooney@gmail.com>

<!-- Please describe your changes on the following line: -->
Make mach.bat request Python 3

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #28379 (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because this is the script which you use to launch the tests

<!-- 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. -->
2021-05-23 13:25:05 -04:00
Josh Matthews
a82b268be0 Convert more taskcluster jobs to Github Actions. 2021-05-23 11:16:09 -04:00
bors-servo
84c8653d7e
Auto merge of #28421 - servo:jdm-patch-46, r=jdm
Disable intermittent test on windows.

#28274
2021-05-22 19:46:01 -04:00
Josh Matthews
abe6fc3698
Disable another intermittent test on windows. 2021-05-22 17:41:23 -04:00
bors-servo
f8105f8689
Auto merge of #28392 - servo:dependabot/cargo/markup5ever-0.10.1, r=jdm
build(deps): bump markup5ever from 0.10.0 to 0.10.1

Bumps [markup5ever](https://github.com/servo/html5ever) from 0.10.0 to 0.10.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="c6f06dba02"><code>c6f06db</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/html5ever/issues/438">#438</a> - servo:jdm-patch-4, r=jdm</li>
<li><a href="5ff3259698"><code>5ff3259</code></a> Update markup5ever minor version.</li>
<li><a href="d0ad764ade"><code>d0ad764</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/html5ever/issues/436">#436</a> - MichaelMcDonnell:escape_default_stable, r=jdm</li>
<li><a href="1b34cf17c6"><code>1b34cf1</code></a> Remove escape_default workarounds</li>
<li><a href="cfea19f74d"><code>cfea19f</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/html5ever/issues/434">#434</a> - DavidKorczynski:patch-1, r=emilio</li>
<li><a href="186e5898bd"><code>186e589</code></a> Fix breaking OSS-Fuzz coverage build</li>
<li><a href="b1b3e8a5c2"><code>b1b3e8a</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/html5ever/issues/432">#432</a> - svenfoo:fix-clippy-warnings, r=jdm</li>
<li><a href="d1206daa74"><code>d1206da</code></a> Remove a field that was never read</li>
<li><a href="03076751c3"><code>0307675</code></a> Remove an unnecessary trailing semicolon that broke the build</li>
<li><a href="60159c4d8c"><code>60159c4</code></a> Remove unnecessary explicit lifetime specifiers</li>
<li>Additional commits viewable in <a href="https://github.com/servo/html5ever/compare/markup5ever-v0.10.0...markup5ever-v0.10.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=markup5ever&package-manager=cargo&previous-version=0.10.0&new-version=0.10.1)](https://dependabot.com/compatibility-score/?dependency-name=markup5ever&package-manager=cargo&previous-version=0.10.0&new-version=0.10.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

</details>
2021-05-22 17:16:12 -04:00