Skip to content

Commit 144251f

Browse files
committed
enable all workflows
1 parent d5ecac2 commit 144251f

5 files changed

Lines changed: 5 additions & 37 deletions

File tree

.github/workflows/check.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ env:
2323

2424
jobs:
2525
check:
26-
# TEMPORARY: `if: false` parks the job so PR runner capacity goes to the
27-
# test.yaml windows-only matrix while we verify the new
28-
# free-disk-space-windows action. Drop this once the action is confirmed.
29-
if: false
3026
runs-on: ubuntu-latest
3127
timeout-minutes: 25
3228
steps:

.github/workflows/dependencies.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ env:
2929

3030
jobs:
3131
dependencies:
32-
# TEMPORARY: `if: false` parks the job so PR runner capacity goes to the
33-
# test.yaml windows-only matrix while we verify the new
34-
# free-disk-space-windows action. Drop this once the action is confirmed.
35-
if: false
3632
# `ubuntu-latest`, not `ubuntu-slim`: although every step in this workflow
3733
# is metadata/network-bound (no Rust compile), `taiki-e/install-action`
3834
# itself assumes a standard runner-image FHS (e.g. ~/.cargo/bin) and

.github/workflows/docker-linux.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ env:
2424

2525
jobs:
2626
build:
27-
# TEMPORARY: `if: false` parks the job so PR runner capacity goes to the
28-
# test.yaml windows-only matrix while we verify the new
29-
# free-disk-space-windows action. Drop this once the action is confirmed.
30-
if: false
3127
runs-on: ubuntu-latest
3228
timeout-minutes: 120
3329
strategy:

.github/workflows/test.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,12 @@ jobs:
8282
|| github.event.inputs.os == 'windows-latest' && '[{"os":"windows-latest","timeout":60}]'
8383
|| github.event.inputs.os == 'windows-11-arm' && '[{"os":"windows-11-arm","timeout":60}]'
8484
)
85-
|| '[{"os":"windows-latest","timeout":60}]'
85+
|| format('[{0},{1},{2},{3}]',
86+
'{"os":"ubuntu-latest","timeout":40}',
87+
'{"os":"ubuntu-24.04-arm","timeout":40}',
88+
'{"os":"macos-latest","timeout":45}',
89+
'{"os":"windows-latest","timeout":60}')
8690
) }}
87-
# TEMPORARY: PR matrix narrowed to windows-latest only while we verify
88-
# the new free-disk-space-windows action. Restore the canonical 4-OS
89-
# PR matrix once the action is confirmed:
90-
# || format('[{0},{1},{2},{3}]',
91-
# '{"os":"ubuntu-latest","timeout":40}',
92-
# '{"os":"ubuntu-24.04-arm","timeout":40}',
93-
# '{"os":"macos-latest","timeout":45}',
94-
# '{"os":"windows-latest","timeout":60}')
9591
steps:
9692
- name: Checkout
9793
uses: actions/checkout@v4

.github/workflows/upstream-cache.yaml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ name: upstream-cache
1414
# whenever it's convenient.
1515

1616
"on":
17-
# pull_request is retained per the gha_combined policy ("every workflow
18-
# must trigger on pull_request"), but every job below is gated by
19-
# `if: false` so PR runs are no-ops. Drop the `if: false` (and re-add
20-
# the path scope below) on the specific job you want to iterate on.
2117
pull_request:
2218
paths:
2319
- .github/workflows/upstream-cache.yaml
@@ -53,9 +49,6 @@ env:
5349

5450
jobs:
5551
rustpython:
56-
# Parked. Drop the `if: false` to rebuild + republish (e.g. on a
57-
# version bump). Default is no PR run.
58-
if: false
5952
runs-on: ${{ matrix.os }}
6053
# Job-level write so gh release upload can push assets; the workflow
6154
# default is contents:read.
@@ -256,9 +249,6 @@ jobs:
256249
# green on its own CI across Linux/macOS/Windows, so we build it directly
257250
# instead of maintaining a sprawling patch against the tarball.
258251
augeas:
259-
# Parked. Drop the `if: false` to rebuild + republish (e.g. on a
260-
# version bump or a fork-branch update). Default is no PR run.
261-
if: false
262252
# All five platforms build from the same jayvdb/augeas `win` branch
263253
# source -- one fork, one set of portability patches, identical
264254
# binaries across Linux/macOS/Windows. The fork's own build.yml is
@@ -562,9 +552,6 @@ jobs:
562552
# `http:` install instead of source-compiling. Same shape as the
563553
# augeas job above.
564554
dart-typegen:
565-
# Parked. Drop the `if: false` to rebuild + republish (e.g. on a
566-
# version bump). Default is no PR run.
567-
if: false
568555
runs-on: windows-latest
569556
permissions:
570557
contents: write
@@ -654,9 +641,6 @@ jobs:
654641
# Runs on ubuntu-latest because 7zz extraction is fully cross-platform
655642
# and ubuntu jobs are cheaper than windows ones.
656643
gnupg-w32:
657-
# Parked. Drop the `if: false` to rebuild + republish (e.g. on a
658-
# version bump). Default is no PR run.
659-
if: false
660644
runs-on: ubuntu-latest
661645
permissions:
662646
contents: write

0 commit comments

Comments
 (0)