fix(ci): Daily workflow parent's name (#1182)

* Fix daily workflows' parent's name.
This commit is contained in:
Álex 2024-08-23 15:57:08 +02:00 committed by GitHub
parent 48846d69cb
commit c6e8fadbda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ on:
jobs:
test_amd64:
name: Daily amd64
uses: ./.github/workflows/base_daily_tests.yml
uses: ./.github/workflows/daily_common.yml
with:
nim: "[{'branch': 'version-1-6', 'memory_management': 'refc'}, {'branch': 'version-2-0', 'memory_management': 'refc'}]"
cpu: "['amd64']"

View File

@ -8,7 +8,7 @@ on:
jobs:
test_nim_devel:
name: Daily Nim Devel
uses: ./.github/workflows/base_daily_tests.yml
uses: ./.github/workflows/daily_common.yml
with:
nim: "[{'branch': 'devel', 'memory_management': 'orc'}]"
cpu: "['amd64']"

View File

@ -8,7 +8,7 @@ on:
jobs:
test_i386:
name: Daily i386 (Linux)
uses: ./.github/workflows/base_daily_tests.yml
uses: ./.github/workflows/daily_common.yml
with:
nim: "[{'branch': 'version-1-6', 'memory_management': 'refc'}, {'branch': 'version-2-0', 'memory_management': 'refc'}, {'branch': 'devel', 'memory_management': 'orc'}]"
cpu: "['i386']"