Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Jul 18, 2024
1 parent 54dc79a commit 2476f19
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 36 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/dailies/amd64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Daily Tests
on:
schedule:
- cron: "30 6 * * *"
workflow_dispatch:
pull_request:

jobs:
test_amd64:
name: Daily amd64
uses: ./.github/workflows/base_tests.yml
with:
exclude: "[{'platform': {'cpu': 'i386'}}]"
14 changes: 14 additions & 0 deletions .github/workflows/dailies/devel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Daily Tests
on:
schedule:
- cron: "30 6 * * *"
workflow_dispatch:
pull_request:

jobs:
test_nim_devel:
name: Daily devel
uses: ./.github/workflows/base_tests.yml
with:
include: "[{'nim_branch': {'version': 'devel', 'memory_management': 'orc'}}]"
exclude: "[{'platform': {'os': 'windows'}}, {'platform': {'os': 'macos'}}, {'platform': {'cpu': 'i386'}}]"
13 changes: 13 additions & 0 deletions .github/workflows/dailies/i386.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Daily Tests
on:
schedule:
- cron: "30 6 * * *"
workflow_dispatch:
pull_request:

jobs:
test_i386:
name: Daily i386
uses: ./.github/workflows/base_tests.yml
with:
exclude: "[{'platform': {'cpu': 'amd64'}, 'nim_branch': {'version': 'version-2-0'}}]"
36 changes: 0 additions & 36 deletions .github/workflows/daily.yml

This file was deleted.

0 comments on commit 2476f19

Please sign in to comment.