2022-08-26 02:09:48 +00:00
|
|
|
name: windows-2019
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 10 * * *'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2022-09-10 13:07:46 +00:00
|
|
|
validate-dco:
|
|
|
|
uses: ./.github/workflows/.dco.yml
|
|
|
|
|
2023-10-13 14:40:13 +00:00
|
|
|
test-prepare:
|
|
|
|
uses: ./.github/workflows/.test-prepare.yml
|
2022-09-10 13:07:46 +00:00
|
|
|
needs:
|
|
|
|
- validate-dco
|
2023-10-13 14:40:13 +00:00
|
|
|
|
|
|
|
run:
|
|
|
|
needs:
|
|
|
|
- test-prepare
|
2022-08-26 02:09:48 +00:00
|
|
|
uses: ./.github/workflows/.windows.yml
|
2023-10-13 14:38:07 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-10-13 14:40:13 +00:00
|
|
|
storage: ${{ fromJson(needs.test-prepare.outputs.matrix) }}
|
2022-08-26 02:09:48 +00:00
|
|
|
with:
|
|
|
|
os: windows-2019
|
2023-10-13 14:38:07 +00:00
|
|
|
storage: ${{ matrix.storage }}
|
2022-08-26 02:09:48 +00:00
|
|
|
send_coverage: false
|