Skip to content

Commit

Permalink
Fix test gen windows (#578)
Browse files Browse the repository at this point in the history
* fix typo windows testVersion

* pfx fix

* removed test code

* empty line

* windows dep
  • Loading branch information
CedricGuillemet authored May 17, 2023
1 parent 759cd45 commit be6a80b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
npm install @babylonjs/core@${{ github.event.inputs.BJS_Version }}
npm install @babylonjs/loaders@${{ github.event.inputs.BJS_Version }}
npm install @babylonjs/react-native@${{ github.event.inputs.BRN_Version }}
npm install @babylonjs/react-native-iosandroid-${{ github.event.inputs.BRN_Postfix }}@${{ github.event.inputs.BRN_Version }}
npm install @babylonjs/react-native-windows-${{ github.event.inputs.BRN_Postfix }}@${{ github.event.inputs.BRN_Version }}
npm install @react-native-community/slider
# npm install react-native-permissions
npx react-native autolink-windows
Expand Down
2 changes: 1 addition & 1 deletion Apps/Playground/0.71/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-permissions": "^3.6.1",
"react-native-windows": "0.71.1"
"react-native-windows": "0.71.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
Expand Down
3 changes: 2 additions & 1 deletion Package/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,8 @@ const copyARM64ReleaseUWPFiles = () => {
}

const copyVCXProjUWPFiles = () => {
return gulp.src('../Modules/@babylonjs/react-native-windows/windows/BabylonReactNative/*.*', '!*.pfx')
const uwpFilesDir = '../Modules/@babylonjs/react-native-windows/windows/BabylonReactNative';
return gulp.src([`${uwpFilesDir}/*.*`, `!${uwpFilesDir}/*.pfx`])
.pipe(gulp.dest('Assembled-Windows/windows/BabylonReactNative'));
}

Expand Down

0 comments on commit be6a80b

Please sign in to comment.