mirror of
https://github.com/vacp2p/nim-libp2p.git
synced 2026-01-09 14:28:11 -05:00
35 lines
874 B
YAML
35 lines
874 B
YAML
name: Daily i386
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "30 6 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test_i386:
|
|
name: Daily i386 (Linux)
|
|
uses: ./.github/workflows/daily_common.yml
|
|
with:
|
|
nim: "[
|
|
{'ref': 'version-2-0', 'memory_management': 'refc'},
|
|
{'ref': 'version-2-2', 'memory_management': 'refc'},
|
|
{'ref': 'devel', 'memory_management': 'refc'},
|
|
]"
|
|
cpu: "['i386']"
|
|
exclude: "[
|
|
{'platform': {'os':'macos'}},
|
|
{'platform': {'os':'windows'}},
|
|
]"
|
|
notify-on-failure:
|
|
name: Notify Discord on Failure
|
|
needs: [test_i386]
|
|
if: failure()
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Discord notification
|
|
uses: ./.github/actions/discord_notify
|
|
with:
|
|
webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} |