Skip to content

Commit

Permalink
Add concurrency groups for daily jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Jul 18, 2024
1 parent f991e4f commit eefccb1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,24 @@ jobs:
test_amd64:
name: Daily amd64
uses: ./.github/workflows/base_tests.yml
concurrency:
group: amd64
with:
exclude: "[{'platform': {'cpu': 'i386'}}]"

test_i386:
name: Daily i386
uses: ./.github/workflows/base_tests.yml
concurrency:
group: i386
with:
exclude: "[{'platform': {'cpu': 'amd64'}, 'nim_branch': {'version': 'version-2-0'}}]"

test_nim_devel:
name: Daily
uses: ./.github/workflows/base_tests.yml
concurrency:
group: devel
with:
include: "[{'nim_branch': {'version': 'devel', 'memory_management': 'orc'}}]"
exclude: "[{'platform': {'os': 'windows'}}, {'platform': {'os': 'macos'}}, {'platform': {'cpu': 'i386'}}]"

0 comments on commit eefccb1

Please sign in to comment.