Skip to content

Commit

Permalink
consistent order
Browse files Browse the repository at this point in the history
  • Loading branch information
huonw committed Apr 4, 2024
1 parent deb26e6 commit 523dc1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/clear_self_hosted_persistent_caches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@


jobs:
- name: clear_macos10_15_x86_64
- name: clear_linux_arm64
runs-on:
- self-hosted
- macOS-10.15-X64
- Linux
- ARM64
steps:
- name: df before
run: df -h
Expand All @@ -23,11 +24,10 @@ jobs:
run: du -sh ~/.pex || true; rm -rf ~/.pex
- name: df after
run: df -h
- name: clear_linux_arm64
- name: clear_macos10_15_x86_64
runs-on:
- self-hosted
- Linux
- ARM64
- macOS-10.15-X64
steps:
- name: df before
run: df -h
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants_release/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1599,7 +1599,7 @@ def make_job(platform: Platform) -> dict[str, Any]:
],
}

return [make_job(platform) for platform in SELF_HOSTED]
return [make_job(platform) for platform in sorted(SELF_HOSTED, key=lambda p: p.value)]


# ----------------------------------------------------------------------
Expand Down

0 comments on commit 523dc1f

Please sign in to comment.