aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/nightly_run.yaml
blob: 0f708625f04f7d76587819413cf0dc5954c78ba4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Nightly-run
on: 
  schedule:
    - cron: "0 1 * * *"
  workflow_dispatch:
  
jobs:
  build:
    strategy:
      matrix:
        arch: [ X64, ARM64 ]
        sanitizer: [ "", "sanitize=address" ]
      fail-fast: false

    uses: ./.github/workflows/build_and_test.yaml
    with:
      runner_label: ${{matrix.arch}}
      sanitizer: ${{matrix.sanitizer}}
    secrets: inherit