-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
speed up #190
Comments
Just wanted to comment on another solution: cron job: basically run This was https://codeforces.com/profile/camc 's idea |
just wanted to comment another solution: github CLI allows running a CI action https://cli.github.com/manual/gh_workflow_run so you can write a script to pull the verify file, and if un-run tests, start the CI action to run more tests
|
full example |
today I learned a github CI job can run for 6 hours https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration#usage-limits and noting you can set |
現在は、大量のファイルを変更してしまったときや大量のファイルに依存されているファイルを変更してしまったとき、
GITHUB_TOKEN
の timeout 問題 #51 のために途中で verify が打ち切られてしまう。空コミットをタイミングよく push するのは簡単に自動化できるとはいえ、あまり良くない。選択肢はふたつ:
GH_PAT
を使えば再帰的に GitHub Action を起動できるのでこれを使う。ただし、バグで無限ループしたりしたときがやばいし、時間はかかるThe text was updated successfully, but these errors were encountered: