Skip to content

ci nightly

ci nightly #350

Workflow file for this run

name: ci nightly
on:
schedule:
- cron: "30 2 * * *"
workflow_dispatch:
jobs:
ci-nightly:
if: ${{ github.event_name != 'schedule' || github.repository == 'trueagi-io/hyperon-experimental' }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-22.04", "ubuntu-24.04-arm", "windows-2025", "macos-15-intel", "macos-15"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
cmake-version: ["3.24.x"]
build-type: ["Debug", "Release"]
max-parallel: 5
uses: ./.github/workflows/common.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
cmake-version: ${{ matrix.cmake-version }}
build-type: ${{ matrix.build-type }}
das-tests:
if: ${{ github.event_name != 'schedule' || github.repository == 'trueagi-io/hyperon-experimental' }}
uses: ./.github/workflows/das-tests.yml