Skip to content

azure: split slow linux builders #61370

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: split cargo out of x86_64-gnu-aux on azure
  • Loading branch information
pietroalbini committed Jun 25, 2019
commit 546cd8ff9251c02b79b51a8674980cf40c753b95
5 changes: 5 additions & 0 deletions .azure-pipelines/auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ jobs:

x86_64-gnu-aux:
IMAGE: x86_64-gnu-aux
SCRIPT: make check-aux EXCLUDE_CARGO=1

x86_64-gnu-cargo:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did we forget to include this from before?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, on Travis x86_64-gnu-cargo is included inside x86_64-gnu-aux. Instead on AppVeyor, to speed things up, cargo is tested inside its own job. I replicated the same thing we do on AppVeyor in Azure Linux.

IMAGE: x86_64-gnu-aux
SCRIPT: ./x.py test src/tools/cargotest src/tools/cargo

x86_64-gnu-tools:
IMAGE: x86_64-gnu-tools
Expand Down