-
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.
improvement(ci): improve ci daily workflows (#1002)
- Loading branch information
1 parent
d2c98bd
commit e3c967a
Showing
6 changed files
with
49 additions
and
51 deletions.
There are no files selected for viewing
8 changes: 3 additions & 5 deletions
8
.github/workflows/multi_nim_legacy.yml → .github/workflows/daily.yml
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,14 +1,12 @@ | ||
name: Legacy Platforms | ||
name: Daily | ||
on: | ||
schedule: | ||
- cron: "30 6 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call-multi-nim-common: | ||
uses: status-im/nim-libp2p/.github/workflows/multi_nim_common.yml@unstable | ||
uses: ./.github/workflows/daily_common.yml | ||
with: | ||
nim-branch: "['version-1-6','version-2-0']" | ||
platform: "[{'os':'linux','cpu':'i386'}]" | ||
|
||
|
||
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,13 @@ | ||
name: Daily i386 | ||
on: | ||
schedule: | ||
- cron: "30 6 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call-multi-nim-common: | ||
uses: ./.github/workflows/daily_common.yml | ||
with: | ||
nim-branch: "['version-1-6','version-2-0', 'devel']" | ||
cpu: "['i386']" | ||
exclude: "[{'platform': {'os':'macos'}}, {'platform': {'os':'windows'}}]" |
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,12 @@ | ||
name: Daily Nim Devel | ||
on: | ||
schedule: | ||
- cron: "30 6 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call-multi-nim-common: | ||
uses: ./.github/workflows/daily_common.yml | ||
with: | ||
nim-branch: "['devel']" | ||
cpu: "['amd64']" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.