Skip to content
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

Increase Script speed on errors #17

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tasks/runGhci.expect
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

# GHC version to use
set ver [lindex $argv 0];

set timeout 2

log_user 0
spawn ghci-$ver Global.hs TaskData.hs Description.hs Parse.hs -Wall -Wno-orphans
spawn ghci-$ver Global TaskData Description Parse -Wall -Wno-orphans

Check notice on line 8 in tasks/runGhci.expect

View workflow job for this annotation

GitHub Actions / Check Spelling

`Line` matches candidate pattern `(?:^|[\t ,"'`=(])-[DPWXYLlf](?=[A-Z]{2,}|[A-Z][a-z]|[a-z]{2,})` (candidate-pattern)
log_user 1
expect_before timeout { exit 1 }

expect "*"
expect "Ok, four modules loaded.*"
expect "ghci> "
Expand Down
Loading