You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR is meant to fix the CI for `react-native-xaml` with the minimum
number of changes required to pass, so that new development can
continue.
A side-effect of this change is to bump the version of
`react-native-windows` needed by the example apps from 0.73.4 to
0.73.21.
###### Microsoft Reviewers: [Open in
CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/microsoft/react-native-xaml/pull/293)
Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+8-27
Original file line number
Diff line number
Diff line change
@@ -30,40 +30,21 @@ jobs:
30
30
strategy:
31
31
fail-fast: false
32
32
matrix:
33
-
rnwVersion: [ 'latest', '0.72-stable', '0.71-stable'] # test *all* versions that use VS 2022. aka any RNW version >= min in package.json and >= 0.71
33
+
rnwVersion: [ 'v0.73-stable', 'v0.72-stable', 'v0.71-stable'] # test *all* versions that use VS 2022. aka any RNW version >= min in package.json and >= 0.71
34
34
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
35
35
include:
36
-
- rnwVersion: 'latest'
37
-
rnTemplate: 'react-native@latest'
38
-
- rnwVersion: '0.72-stable'
39
-
rnTemplate: 'react-native@0.72-stable'
40
-
- rnwVersion: '0.71-stable'
41
-
rnTemplate: 'react-native@0.71-stable'
36
+
- rnwVersion: 'v0.73-stable'
37
+
rnVersion: '0.73-stable'
38
+
- rnwVersion: 'v0.72-stable'
39
+
rnVersion: '0.72-stable'
40
+
- rnwVersion: 'v0.71-stable'
41
+
rnVersion: '0.71-stable'
42
42
uses: ./.github/workflows/template-testcli.yml
43
43
with:
44
44
vmImage: windows-2022
45
45
rnwVersion: ${{ matrix.rnwVersion }}
46
46
useRnwNuGet: ${{ matrix.useRnwNuGet }}
47
-
rnTemplate: ${{ matrix.rnTemplate }}
48
-
49
-
call-testcli-old:
50
-
name: Test CLI (VS 2019)
51
-
strategy:
52
-
fail-fast: false
53
-
matrix:
54
-
rnwVersion: ['0.70-stable', '0.69-stable'] # test *all* versions that use VS 2019. aka any RNW version >= min in package.json and < 0.71
55
-
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
Copy file name to clipboardExpand all lines: .github/workflows/pr.yml
+7-25
Original file line number
Diff line number
Diff line change
@@ -42,37 +42,19 @@ jobs:
42
42
strategy:
43
43
fail-fast: true
44
44
matrix:
45
-
rnwVersion: ['latest', '0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.71 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
45
+
rnwVersion: ['v0.73-stable', 'v0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.71 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
46
46
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
47
47
include:
48
-
- rnwVersion: 'latest'
49
-
rnTemplate: 'react-native@latest'
50
-
- rnwVersion: '0.72-stable'
51
-
rnTemplate: 'react-native@0.72-stable'
48
+
- rnwVersion: 'v0.73-stable'
49
+
rnVersion: '0.73-stable'
50
+
- rnwVersion: 'v0.72-stable'
51
+
rnVersion: '0.72-stable'
52
52
uses: ./.github/workflows/template-testcli.yml
53
53
with:
54
54
vmImage: windows-2022
55
55
rnwVersion: ${{ matrix.rnwVersion }}
56
56
useRnwNuGet: ${{ matrix.useRnwNuGet }}
57
-
rnTemplate: ${{ matrix.rnTemplate }}
58
-
59
-
call-testcli-old:
60
-
name: Test CLI (VS 2019)
61
-
needs: setupcheck
62
-
strategy:
63
-
fail-fast: true
64
-
matrix:
65
-
rnwVersion: ['0.69-stable'] # test *key* versions that use VS 2019. aka any RNW version < 0.71 that are used by supported partners
66
-
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
0 commit comments