-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into chore/libp2p-nimble-v1.5.0
- Loading branch information
Showing
13 changed files
with
159 additions
and
120 deletions.
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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Daily amd64 | ||
|
||
on: | ||
schedule: | ||
- cron: "30 6 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test_amd64: | ||
name: Daily amd64 | ||
uses: ./.github/workflows/base_daily_tests.yml | ||
with: | ||
nim: "[{'branch': 'version-1-6', 'memory_management': 'refc'}, {'branch': 'version-2-0', 'memory_management': 'refc'}]" | ||
cpu: "['amd64']" |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Daily Nim Devel | ||
|
||
on: | ||
schedule: | ||
- cron: "30 6 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test_nim_devel: | ||
name: Daily Nim Devel | ||
uses: ./.github/workflows/base_daily_tests.yml | ||
with: | ||
nim: "[{'branch': 'devel', 'memory_management': 'orc'}]" | ||
cpu: "['amd64']" |
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,13 +1,15 @@ | ||
name: Daily i386 | ||
|
||
on: | ||
schedule: | ||
- cron: "30 6 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call-multi-nim-common: | ||
uses: ./.github/workflows/daily_common.yml | ||
test_i386: | ||
name: Daily i386 (Linux) | ||
uses: ./.github/workflows/base_daily_tests.yml | ||
with: | ||
nim-branch: "['version-1-6','version-2-0', 'devel']" | ||
nim: "[{'branch': 'version-1-6', 'memory_management': 'refc'}, {'branch': 'version-2-0', 'memory_management': 'refc'}, {'branch': 'devel', 'memory_management': 'orc'}]" | ||
cpu: "['i386']" | ||
exclude: "[{'platform': {'os':'macos'}}, {'platform': {'os':'windows'}}]" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.