diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-04-09 13:01:10 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-04-09 13:01:10 +0000 |
| commit | c7053b391c41f6f96d020d5136feb31f9913753d (patch) | |
| tree | 5b189199cf7471f788aab5a259fe305edd09024c | |
| parent | 9970b04646b4ea20934c6382313022728b2a0d37 (diff) | |
| download | rust-c7053b391c41f6f96d020d5136feb31f9913753d.tar.gz rust-c7053b391c41f6f96d020d5136feb31f9913753d.zip | |
Set a timeout of 1h for the "Various rustc tests" GHA workflow
Fixes #1368
| -rw-r--r-- | .github/workflows/rustc.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/rustc.yml b/.github/workflows/rustc.yml index 1e83cbc359c..b2f772c4fc4 100644 --- a/.github/workflows/rustc.yml +++ b/.github/workflows/rustc.yml @@ -6,6 +6,7 @@ on: jobs: bootstrap_rustc: runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v3 @@ -21,8 +22,11 @@ jobs: - name: Test run: ./scripts/test_bootstrap.sh + + rustc_test_suite: runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v3 |
