aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/nightly_run.yaml
blob: 1f8ceb41c8d2743b9f09694344c127f74712119f (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.yml
    with:
      runner_label: ${{matrix.arch}}
      sanitizer: ${{matrix.sanitizer}}
    secrets: inherit