-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Try to fix CI failures #15701
Merged
Merged
Try to fix CI failures #15701
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
f7bc171
Use cligens release version
Clyybber be03b6c
Rework important_packages main loop
Clyybber 33e3e95
Fix
Clyybber 42a2ad2
Fix
Clyybber 3f98f3f
Create pkgs dir
Clyybber a00f389
Don't use nimble develop
Clyybber bc864a2
Use git to get the latest release/tag instead
Clyybber a969284
Tackle the root cause
Clyybber 4b34e31
Reduce diff
Clyybber f4f715e
Cleanup
Clyybber File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,134 +1,133 @@ | ||
template pkg1(name: string; hasDeps = false; cmd = "nimble test"; url = "", useHead = true): untyped = | ||
packages1.add((name, cmd, hasDeps, url, useHead)) | ||
template pkg1(name: string; cmd = "nimble test"; url = "", useHead = true): untyped = | ||
packages1.add((name, cmd, url, useHead)) | ||
|
||
template pkg2(name: string; hasDeps = false; cmd = "nimble test"; url = "", useHead = true): untyped = | ||
packages2.add((name, cmd, hasDeps, url, useHead)) | ||
|
||
var packages1*: seq[tuple[name, cmd: string; hasDeps: bool; url: string, useHead: bool]] = @[] | ||
var packages2*: seq[tuple[name, cmd: string; hasDeps: bool; url: string, useHead: bool]] = @[] | ||
template pkg2(name: string; cmd = "nimble test"; url = "", useHead = true): untyped = | ||
packages2.add((name, cmd, url, useHead)) | ||
|
||
var packages1*: seq[tuple[name, cmd: string; url: string, useHead: bool]] = @[] | ||
var packages2*: seq[tuple[name, cmd: string; url: string, useHead: bool]] = @[] | ||
|
||
# packages A-M | ||
# pkg1 "alea", true | ||
# pkg1 "alea" | ||
pkg1 "argparse" | ||
pkg1 "arraymancer", true, "nim c tests/tests_cpu.nim" | ||
#pkg1 "ast_pattern_matching", false, "nim c -r --oldgensym:on tests/test1.nim" | ||
pkg1 "awk", true | ||
pkg1 "arraymancer", "nim c tests/tests_cpu.nim" | ||
#pkg1 "ast_pattern_matching", "nim c -r --oldgensym:on tests/test1.nim" | ||
pkg1 "awk" | ||
pkg1 "bigints", url = "https://github.com/Araq/nim-bigints" | ||
pkg1 "binaryheap", false, "nim c -r binaryheap.nim" | ||
pkg1 "binaryheap", "nim c -r binaryheap.nim" | ||
pkg1 "BipBuffer" | ||
# pkg1 "blscurve", true # pending https://github.com/status-im/nim-blscurve/issues/39 | ||
pkg1 "bncurve", true | ||
pkg1 "brainfuck", true, "nim c -d:release -r tests/compile.nim" | ||
pkg1 "bump", true, "nim c --gc:arc -r tests/tbump.nim", "https://github.com/disruptek/bump" | ||
pkg1 "c2nim", false, "nim c testsuite/tester.nim" | ||
# pkg1 "blscurve" # pending https://github.com/status-im/nim-blscurve/issues/39 | ||
pkg1 "bncurve" | ||
pkg1 "brainfuck", "nim c -d:release -r tests/compile.nim" | ||
pkg1 "bump", "nim c --gc:arc -r tests/tbump.nim", "https://github.com/disruptek/bump" | ||
pkg1 "c2nim", "nim c testsuite/tester.nim" | ||
pkg1 "cascade" | ||
pkg1 "cello", true | ||
pkg1 "cello" | ||
pkg1 "chroma" | ||
pkg1 "chronicles", true, "nim c -o:chr -r chronicles.nim" | ||
pkg1 "chronicles", "nim c -o:chr -r chronicles.nim" | ||
when not defined(osx): # testdatagram.nim(560, 54): Check failed | ||
pkg1 "chronos", true, "nim c -r -d:release tests/testall" | ||
pkg1 "cligen", false, "nim c -o:cligenn -r cligen.nim" | ||
pkg1 "combparser", false, "nimble test --gc:orc" | ||
pkg1 "chronos", "nim c -r -d:release tests/testall" | ||
pkg1 "cligen", "nim c --path:. -r cligen.nim" | ||
pkg1 "combparser", "nimble test --gc:orc" | ||
pkg1 "compactdict" | ||
pkg1 "comprehension", false, "nimble test", "https://github.com/alehander42/comprehension" | ||
pkg1 "dashing", false, "nim c tests/functional.nim" | ||
pkg1 "comprehension", "nimble test", "https://github.com/alehander42/comprehension" | ||
pkg1 "dashing", "nim c tests/functional.nim" | ||
pkg1 "delaunay" | ||
pkg1 "docopt" | ||
pkg1 "easygl", true, "nim c -o:egl -r src/easygl.nim", "https://github.com/jackmott/easygl" | ||
pkg1 "easygl", "nim c -o:egl -r src/easygl.nim", "https://github.com/jackmott/easygl" | ||
pkg1 "elvis" | ||
pkg1 "fidget", true | ||
pkg1 "fragments", false, "nim c -r fragments/dsl.nim" | ||
pkg1 "fidget" | ||
pkg1 "fragments", "nim c -r fragments/dsl.nim" | ||
pkg1 "gara" | ||
pkg1 "ggplotnim", true, "nim c -d:noCairo -r tests/tests.nim" | ||
# pkg1 "gittyup", true, "nimble test", "https://github.com/disruptek/gittyup" | ||
pkg1 "ggplotnim", "nim c -d:noCairo -r tests/tests.nim" | ||
# pkg1 "gittyup", "nimble test", "https://github.com/disruptek/gittyup" | ||
# pkg1 "glob" # pending https://github.com/citycide/glob/issues/49 | ||
pkg1 "gnuplot", false, "nim c gnuplot.nim" | ||
pkg1 "hts", false, "nim c -o:htss src/hts.nim" | ||
# pkg1 "httpauth", true | ||
pkg1 "illwill", false, "nimble examples" | ||
pkg1 "inim", true | ||
pkg1 "itertools", false, "nim doc src/itertools.nim" | ||
pkg1 "gnuplot", "nim c gnuplot.nim" | ||
pkg1 "hts", "nim c -o:htss src/hts.nim" | ||
# pkg1 "httpauth" | ||
pkg1 "illwill", "nimble examples" | ||
pkg1 "inim" | ||
pkg1 "itertools", "nim doc src/itertools.nim" | ||
pkg1 "iterutils" | ||
pkg1 "jstin" | ||
pkg1 "karax", false, "nim c -r tests/tester.nim" | ||
pkg1 "kdtree", false, "nimble test", "https://github.com/jblindsay/kdtree" | ||
pkg1 "karax", "nim c -r tests/tester.nim" | ||
pkg1 "kdtree", "nimble test", "https://github.com/jblindsay/kdtree" | ||
pkg1 "loopfusion" | ||
pkg1 "macroutils" | ||
pkg1 "markdown" | ||
pkg1 "memo" | ||
pkg1 "msgpack4nim", false, "nim c -r tests/test_spec.nim" | ||
pkg1 "msgpack4nim", "nim c -r tests/test_spec.nim" | ||
|
||
# these two are special snowflakes | ||
pkg1 "nimcrypto", false, "nim c -r tests/testall.nim" | ||
pkg1 "stint", false, "nim c -o:stintt -r stint.nim" | ||
pkg1 "nimcrypto", "nim c -r tests/testall.nim" | ||
pkg1 "stint", "nim c -o:stintt -r stint.nim" | ||
|
||
|
||
# packages N-Z | ||
pkg2 "nake", false, "nim c nakefile.nim" | ||
pkg2 "neo", true, "nim c -d:blas=openblas tests/all.nim" | ||
# pkg2 "nesm", false, "nimble tests" # notice plural 'tests' | ||
# pkg2 "nico", true | ||
pkg2 "nicy", false, "nim c -r src/nicy.nim" | ||
pkg2 "nigui", false, "nim c -o:niguii -r src/nigui.nim" | ||
pkg2 "NimData", true, "nim c -o:nimdataa src/nimdata.nim" | ||
pkg2 "nimes", true, "nim c src/nimes.nim" | ||
pkg2 "nimfp", true, "nim c -o:nfp -r src/fp.nim" | ||
pkg2 "nimgame2", true, "nim c nimgame2/nimgame.nim" | ||
pkg2 "nimgen", true, "nim c -o:nimgenn -r src/nimgen/runcfg.nim" | ||
pkg2 "nimlsp", true | ||
pkg2 "nimly", true, "nim c -r tests/test_readme_example.nim" | ||
# pkg2 "nimongo", true, "nimble test_ci" | ||
# pkg2 "nimph", true, "nimble test", "https://github.com/disruptek/nimph" | ||
pkg2 "nimpy", false, "nim c -r tests/nimfrompy.nim" | ||
pkg2 "nake", "nim c nakefile.nim" | ||
pkg2 "neo", "nim c -d:blas=openblas tests/all.nim" | ||
# pkg2 "nesm", "nimble tests" # notice plural 'tests' | ||
# pkg2 "nico" | ||
pkg2 "nicy", "nim c -r src/nicy.nim" | ||
pkg2 "nigui", "nim c -o:niguii -r src/nigui.nim" | ||
pkg2 "NimData", "nim c -o:nimdataa src/nimdata.nim" | ||
pkg2 "nimes", "nim c src/nimes.nim" | ||
pkg2 "nimfp", "nim c -o:nfp -r src/fp.nim" | ||
pkg2 "nimgame2", "nim c nimgame2/nimgame.nim" | ||
pkg2 "nimgen", "nim c -o:nimgenn -r src/nimgen/runcfg.nim" | ||
pkg2 "nimlsp" | ||
pkg2 "nimly", "nim c -r tests/test_readme_example.nim" | ||
# pkg2 "nimongo", "nimble test_ci" | ||
# pkg2 "nimph", "nimble test", "https://github.com/disruptek/nimph" | ||
pkg2 "nimpy", "nim c -r tests/nimfrompy.nim" | ||
pkg2 "nimquery" | ||
pkg2 "nimsl", true | ||
pkg2 "nimsl" | ||
pkg2 "nimsvg" | ||
pkg2 "nimterop", true, "nimble minitest" | ||
pkg2 "nimwc", true, "nim c nimwc.nim" | ||
# pkg2 "nimx", true, "nim c --threads:on test/main.nim" | ||
# pkg2 "nitter", true, "nim c src/nitter.nim", "https://github.com/zedeus/nitter" | ||
pkg2 "norm", true, "nim c -r tests/tsqliterows.nim" | ||
pkg2 "npeg", false, "nimble testarc" | ||
pkg2 "numericalnim", true, "nim c -r tests/test_integrate.nim" | ||
pkg2 "nimterop", "nimble minitest" | ||
pkg2 "nimwc", "nim c nimwc.nim" | ||
# pkg2 "nimx", "nim c --threads:on test/main.nim" | ||
# pkg2 "nitter", "nim c src/nitter.nim", "https://github.com/zedeus/nitter" | ||
pkg2 "norm", "nim c -r tests/tsqliterows.nim" | ||
pkg2 "npeg", "nimble testarc" | ||
pkg2 "numericalnim", "nim c -r tests/test_integrate.nim" | ||
pkg2 "optionsutils" | ||
pkg2 "ormin", true, "nim c -o:orminn ormin.nim" | ||
pkg2 "ormin", "nim c -o:orminn ormin.nim" | ||
pkg2 "parsetoml" | ||
pkg2 "patty" | ||
pkg2 "plotly", true, "nim c examples/all.nim" | ||
pkg2 "plotly", "nim c examples/all.nim" | ||
pkg2 "pnm" | ||
pkg2 "polypbren" | ||
pkg2 "prologue", true, "nimble tcompile" | ||
pkg2 "protobuf", true, "nim c -o:protobuff -r src/protobuf.nim" | ||
pkg2 "prologue", "nimble tcompile" | ||
pkg2 "protobuf", "nim c -o:protobuff -r src/protobuf.nim" | ||
pkg2 "pylib" | ||
pkg2 "rbtree" | ||
pkg2 "react", false, "nimble example" | ||
pkg2 "regex", true, "nim c src/regex" | ||
pkg2 "result", false, "nim c -r result.nim" | ||
pkg2 "RollingHash", false, "nim c -r tests/test_cyclichash.nim" | ||
pkg2 "rosencrantz", false, "nim c -o:rsncntz -r rosencrantz.nim" | ||
pkg2 "sdl1", false, "nim c -r src/sdl.nim" | ||
pkg2 "sdl2_nim", false, "nim c -r sdl2/sdl.nim" | ||
pkg2 "sigv4", true, "nim c --gc:arc -r sigv4.nim", "https://github.com/disruptek/sigv4" | ||
pkg2 "snip", false, "nimble test", "https://github.com/genotrance/snip" | ||
pkg2 "react", "nimble example" | ||
pkg2 "regex", "nim c src/regex" | ||
pkg2 "result", "nim c -r result.nim" | ||
pkg2 "RollingHash", "nim c -r tests/test_cyclichash.nim" | ||
pkg2 "rosencrantz", "nim c -o:rsncntz -r rosencrantz.nim" | ||
pkg2 "sdl1", "nim c -r src/sdl.nim" | ||
pkg2 "sdl2_nim", "nim c -r sdl2/sdl.nim" | ||
pkg2 "sigv4", "nim c --gc:arc -r sigv4.nim", "https://github.com/disruptek/sigv4" | ||
pkg2 "snip", "nimble test", "https://github.com/genotrance/snip" | ||
pkg2 "strslice" | ||
pkg2 "strunicode", true, "nim c -r src/strunicode.nim" | ||
pkg2 "strunicode", "nim c -r src/strunicode.nim" | ||
pkg2 "synthesis" | ||
pkg2 "telebot", true, "nim c -o:tbot -r src/telebot.nim" | ||
pkg2 "telebot", "nim c -o:tbot -r src/telebot.nim" | ||
pkg2 "tempdir" | ||
pkg2 "templates" | ||
pkg2 "tensordsl", false, "nim c -r tests/tests.nim", "https://krux02@bitbucket.org/krux02/tensordslnim.git" | ||
pkg2 "terminaltables", false, "nim c src/terminaltables.nim" | ||
pkg2 "termstyle", false, "nim c -r termstyle.nim" | ||
pkg2 "tensordsl", "nim c -r tests/tests.nim", "https://krux02@bitbucket.org/krux02/tensordslnim.git" | ||
pkg2 "terminaltables", "nim c src/terminaltables.nim" | ||
pkg2 "termstyle", "nim c -r termstyle.nim" | ||
pkg2 "timeit" | ||
pkg2 "timezones" | ||
pkg2 "tiny_sqlite" | ||
pkg2 "unicodedb", false, "nim c -d:release -r tests/tests.nim" | ||
pkg2 "unicodeplus", true, "nim c -d:release -r tests/tests.nim" | ||
pkg2 "unicodedb", "nim c -d:release -r tests/tests.nim" | ||
pkg2 "unicodeplus", "nim c -d:release -r tests/tests.nim" | ||
pkg2 "unpack" | ||
pkg2 "websocket", false, "nim c websocket.nim" | ||
# pkg2 "winim", true | ||
pkg2 "websocket", "nim c websocket.nim" | ||
# pkg2 "winim" | ||
pkg2 "with" | ||
pkg2 "ws" | ||
pkg2 "yaml", false, "nim build" | ||
pkg2 "zero_functional", false, "nim c -r -d:nimWorkaround14447 test.nim" | ||
pkg2 "yaml", "nim build" | ||
pkg2 "zero_functional", "nim c -r -d:nimWorkaround14447 test.nim" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Clyybber why did you remove this? this was there for a good reason, reducing spurious git clone failures which used to happen a lot before this was added
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ping @Clyybber , I'm now getting 503/443 errors again after your removal of
actionRetry
which was introduced for this very purpose in #14547eg: in https://github.com/nim-lang/Nim/pull/15765/checks?check_run_id=1323632253 i just got:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ping @Clyybber this type of failure keeps happening and was mostly solved with
actionRetry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, this slipped my notifications. PR incoming EDIT: #16262