-
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 1.1 KB
/
gnulib_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: GNULIB Patch Tests
on:
push:
branches-ignore:
- trash
schedule:
- cron: '30 5 * * *'
env:
CI_REQ_DOTNET_SDK_VER: 6.0.401
NUKE_TELEMETRY_OPTOUT: 1
MSYS: "winsymlinks:native wincmdln"
MSYS2_ARG_CONV_EXCL: "*"
MSYS2_PATH_TYPE: inherit
WLB_BASE_FOLDER: "d:/WLB"
MSYSTEM: UCRT64
MSYS_PATH: d:/msys64
jobs:
get_patch_matrix:
uses: ./.github/workflows/do_build.yml
with:
BuildPkg: script
Script: ./build/f_TEMPLATE_build.sh gnulib_dump_patches
gnulib_test_all_patches:
name: Test All Patches Together
uses: ./.github/workflows/do_build.yml
with:
BuildPkg: script
Script: .github/gnu_patchtest.sh all_patch
gnulib_test_patch:
name: Test Single
needs: get_patch_matrix
strategy:
fail-fast: false
matrix:
PatchName: ${{ fromjson(needs.get_patch_matrix.outputs.ScriptRes) }}
Mode: [branch, patch]
uses: ./.github/workflows/do_build.yml
with:
BuildPkg: script
Script: .github/gnu_patchtest.sh ${{ matrix.Mode }} '${{ matrix.PatchName }}'