|
|
@ -1,6 +1,11 @@
|
|
|
|
name: NightlyTests
|
|
|
|
name: NightlyTests
|
|
|
|
on:
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
|
|
|
|
branches:
|
|
|
|
|
|
|
|
required: false
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: "Array of branches to run: ['21','master']. Defaults to NIGHTLYTEST_BRANCHES"
|
|
|
|
|
|
|
|
|
|
|
|
schedule:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 2 * * *'
|
|
|
|
- cron: '0 2 * * *'
|
|
|
@ -18,7 +23,7 @@ jobs:
|
|
|
|
strategy:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
matrix:
|
|
|
|
branch: ${{ fromJSON(vars.NIGHTLYTEST_BRANCHES) }}
|
|
|
|
branch: ${{ fromJSON( ( inputs.branches || vars.NIGHTLYTEST_BRANCHES ) ) }}
|
|
|
|
group: ${{ fromJSON(vars.NIGHTLYTEST_LIST) }}
|
|
|
|
group: ${{ fromJSON(vars.NIGHTLYTEST_LIST) }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|