[CI] Use longer timeout #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
jobs: | |
test: | |
name: Test job | |
runs-on: ["self-hosted", "profiling"] | |
timeout-minutes: 1080 # 18 hours | |
steps: | |
- name: Test | |
run: | | |
date | |
echo "Hello world" | |
for hour in {0..13}; do | |
for min in {0..5}; do | |
python3 -c "import time; time.sleep(600)" # 10 minutes | |
date | |
done | |
done |