Skip to content

Commit

Permalink
Lets see if Random Offset will let us keep 9 runners
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Mar 24, 2024
1 parent cdfb065 commit 0ef025f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/Regression_Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Random Offset
shell: python
run: |
import random
import time
t = random.randint(1,60)
print("Sleeping", t, "seconds...")
time.sleep(t)
print("Done")
- name: "Apt Update"
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: |
Expand Down

0 comments on commit 0ef025f

Please sign in to comment.