-
Notifications
You must be signed in to change notification settings - Fork 81
chore: fixing daily ci #3878
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
base: master
Are you sure you want to change the base?
chore: fixing daily ci #3878
Changes from all commits
903fd1b
c204a26
8330e03
ffacce7
1a49ae0
05e496c
990d5c0
3c12a25
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ name: Daily logos-delivery CI | |
| on: | ||
| schedule: | ||
| - cron: '30 6 * * *' | ||
| workflow_dispatch: | ||
|
|
||
| env: | ||
| NPROC: 2 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,13 +2,13 @@ | |
| "version": 2, | ||
| "packages": { | ||
| "nim": { | ||
| "version": "2.2.4", | ||
| "vcsRevision": "911e0dbb1f76de61fa0215ab1bb85af5334cc9a8", | ||
| "version": "2.2.10", | ||
| "vcsRevision": "9fe2137fa2f3f66cf5a44f357d461829ac9e20c4", | ||
|
Comment on lines
+5
to
+6
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above, we need to keep compiler version we know as producing good code.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes indeed, not needed to change nimble.lock |
||
| "url": "https://github.com/nim-lang/Nim.git", | ||
| "downloadMethod": "git", | ||
| "dependencies": [], | ||
| "checksums": { | ||
| "sha1": "68bb85cbfb1832ce4db43943911b046c3af3caab" | ||
| "sha1": "17ec440fdb89f8903db29a17898af590087d2b64" | ||
| } | ||
| }, | ||
| "unittest2": { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| {.used.} | ||
|
|
||
| import | ||
| stew/results, | ||
| results, | ||
| chronos, | ||
| testutils/unittests, | ||
| libp2p/crypto/crypto as libp2p_keys, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ import | |
| chronos, | ||
| eth/keys, | ||
| bearssl, | ||
| stew/[results], | ||
| results, | ||
| metrics, | ||
| metrics/chronos_httpserver | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,14 +9,13 @@ author = "Status Research & Development GmbH" | |
| description = "Waku, Private P2P Messaging for Resource-Restricted Devices" | ||
| license = "MIT or Apache License 2.0" | ||
|
|
||
| const RequiredNimVersion = "2.2.4" | ||
| const RequiredNimVersion = "2.2.10" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is not needed yet.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes exactly, we will stick to 2.2.4 for now ( cc @darshankabariya .) |
||
| ## This is the nim compiler version that we are working on. Other versions may behave differently. | ||
| const RequiredNimbleVersion = "0.22.3" | ||
| ## Enforced nimble version to ensure a reproducible flow | ||
|
|
||
| ### Dependencies | ||
| requires "nim >= 2.2.4", | ||
| "chronos >= 4.2.0", | ||
| requires "chronos >= 4.2.0", | ||
| "taskpools", | ||
| # Logging & Configuration | ||
| "chronicles", | ||
|
|
||
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.
Is this applies to all ci run on all platform?
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.
I think it will work fine as long as the
NIMBLE_DIRis not overridden, which is the case.