File tree Expand file tree Collapse file tree 1 file changed +6
-23
lines changed Expand file tree Collapse file tree 1 file changed +6
-23
lines changed Original file line number Diff line number Diff line change 42
42
43
43
- uses : actions/setup-python@v4
44
44
with :
45
- python-version : ' 3'
45
+ python-version : ' 3'
46
46
47
47
- uses : actions/setup-java@v2
48
48
with :
@@ -92,34 +92,17 @@ jobs:
92
92
env :
93
93
TEMPLATE_NAME : ${{ matrix.template }}
94
94
run : |
95
+ echo "---"
96
+ echo "Creating myApp using template: $(pwd)/templates/packages/$TEMPLATE_NAME"
97
+ echo "---"
95
98
ns create myApp --template="$(pwd)/templates/packages/$TEMPLATE_NAME"
96
99
cd myApp
97
100
npm install
98
101
99
102
- name : Test iOS Build
100
103
working-directory : myApp
101
- run : |
102
- ns build ios
104
+ run : ns build ios
103
105
104
106
- name : Test Android Build
105
107
working-directory : myApp
106
- run : |
107
- # cat <<EOT > _fix_ndk_version.js
108
- # const fs = require('fs');
109
- # const path = require('path');
110
-
111
- # const appGradlePath = path.resolve(
112
- # __dirname,
113
- # 'App_Resources/Android/app.gradle'
114
- # );
115
- # let contents = fs.readFileSync(appGradlePath);
116
- # contents = contents.toString().replace(
117
- # 'defaultConfig {',
118
- # 'ndkVersion "22.1.7171670"\n defaultConfig {'
119
- # );
120
- # fs.writeFileSync(appGradlePath, contents);
121
- # EOT
122
- #
123
- # node _fix_ndk_version.js
124
-
125
- ns build android
108
+ run : ns build android
You can’t perform that action at this time.
0 commit comments