File tree Expand file tree Collapse file tree 6 files changed +555
-5
lines changed Expand file tree Collapse file tree 6 files changed +555
-5
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ trigger:
64
64
---
65
65
kind : pipeline
66
66
type : docker
67
- name : nc-19 -test
67
+ name : nc-20 -test
68
68
69
69
steps :
70
70
- name : node-modules
74
74
- name : test-run
75
75
image : node:13
76
76
commands :
77
- - npm run start -- build --nc-version v19 .0.12
77
+ - npm run start -- build --nc-version v20 .0.12
78
78
79
79
trigger :
80
80
branch :
@@ -85,7 +85,7 @@ trigger:
85
85
---
86
86
kind : pipeline
87
87
type : docker
88
- name : nc-20 -test
88
+ name : nc-21 -test
89
89
90
90
steps :
91
91
- name : node-modules
95
95
- name : test-run
96
96
image : node:13
97
97
commands :
98
- - npm run start -- build --nc-version v20 .0.10
98
+ - npm run start -- build --nc-version v21 .0.4
99
99
100
100
trigger :
101
101
branch :
Original file line number Diff line number Diff line change 1
- v21 .0.1
1
+ v22 .0.0
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://raw.githubusercontent.com/gary-kim/nc-build-script/master/config.schema.json" ,
3
+ "version" : " v20.0.12" ,
4
+ "versionString" : " 20.0.12, Gary Kim Personal Build" ,
5
+ "repo" : " https://github.com/nextcloud/server" ,
6
+ "name" : " nextcloud" ,
7
+ "exclude" : [
8
+ " /.*.yml" ,
9
+ " .editorconfig" ,
10
+ " .git" ,
11
+ " .git*" ,
12
+ " .eslintrc.js" ,
13
+ " .jshintrc" ,
14
+ " .mailmap" ,
15
+ " .tag" ,
16
+ " /*.md" ,
17
+ " /composer.json" ,
18
+ " /composer.lock" ,
19
+ " COPYING-README" ,
20
+ " Makefile" ,
21
+ " *.sh" ,
22
+ " babel.config.js" ,
23
+ " package.json" ,
24
+ " package-lock.json" ,
25
+ " webpack.common.js" ,
26
+ " webpack.dev.js" ,
27
+ " webpack.prod.js" ,
28
+ " .github" ,
29
+ " .idea" ,
30
+ " .tx" ,
31
+ " /build" ,
32
+ " /contribute" ,
33
+ " tests" ,
34
+ " .l10nignore" ,
35
+ " /core/src" ,
36
+ " /core/webpack.js" ,
37
+ " /apps/*/webpack.js" ,
38
+ " /apps/*/src" ,
39
+ " /apps/*/*.md"
40
+ ],
41
+ "apps" : {
42
+ "activity" : {
43
+ "repo" : " https://github.com/nextcloud/activity"
44
+ },
45
+ "files_pdfviewer" : {
46
+ "repo" : " https://github.com/nextcloud/files_pdfviewer"
47
+ },
48
+ "files_rightclick" : {
49
+ "repo" : " https://github.com/nextcloud/files_rightclick"
50
+ },
51
+ "files_videoplayer" : {
52
+ "repo" : " https://github.com/nextcloud/files_videoplayer"
53
+ },
54
+ "firstrunwizard" : {
55
+ "repo" : " https://github.com/nextcloud/firstrunwizard"
56
+ },
57
+ "logreader" : {
58
+ "repo" : " https://github.com/nextcloud/logreader"
59
+ },
60
+ "nextcloud_announcements" : {
61
+ "repo" : " https://github.com/nextcloud/nextcloud_announcements"
62
+ },
63
+ "notifications" : {
64
+ "repo" : " https://github.com/nextcloud/notifications"
65
+ },
66
+ "password_policy" : {
67
+ "repo" : " https://github.com/nextcloud/password_policy"
68
+ },
69
+ "photos" : {
70
+ "repo" : " https://github.com/nextcloud/photos"
71
+ },
72
+ "privacy" : {
73
+ "repo" : " https://github.com/nextcloud/privacy"
74
+ },
75
+ "recommendations" : {
76
+ "repo" : " https://github.com/nextcloud/recommendations"
77
+ },
78
+ "serverinfo" : {
79
+ "repo" : " https://github.com/nextcloud/serverinfo"
80
+ },
81
+ "survey_client" : {
82
+ "repo" : " https://github.com/nextcloud/survey_client"
83
+ },
84
+ "testing" : {
85
+ "remove" : true
86
+ },
87
+ "text" : {
88
+ "repo" : " https://github.com/nextcloud/text"
89
+ },
90
+ "viewer" : {
91
+ "repo" : " https://github.com/nextcloud/viewer"
92
+ },
93
+ "updater" : {
94
+ "repo" : " https://github.com/nextcloud/updater" ,
95
+ "exclude" : [
96
+ " !updater.phar" ,
97
+ " !index.php" ,
98
+ " **"
99
+ ],
100
+ "appsDir" : " ./"
101
+ },
102
+ "skeleton" : {
103
+ "repo" : " https://github.com/nextcloud/example-files" ,
104
+ "remove" : " continue" ,
105
+ "appsDir" : " ./core" ,
106
+ "version" : " stable20"
107
+ }
108
+ },
109
+ "globalExclude" : [
110
+ " .git" ,
111
+ " .git*" ,
112
+ " /node_modules" ,
113
+ " /tests" ,
114
+ " /.*.yml" ,
115
+ " /README.md" ,
116
+ " /CONTRIBUTING.md" ,
117
+ " /CHANGELOG.md" ,
118
+ " /Makefile" ,
119
+ " /.tx" ,
120
+ " /.github" ,
121
+ " /.l10nignore" ,
122
+ " /package.json" ,
123
+ " /package-lock.json" ,
124
+ " /.gitattributes" ,
125
+ " .babelrc" ,
126
+ " .eslintrc.js" ,
127
+ " build.xml" ,
128
+ " /webpack.common.js" ,
129
+ " /webpack.dev.js" ,
130
+ " /webpack.prod.js" ,
131
+ " /src" ,
132
+ " /cypress" ,
133
+ " /cypress.json" ,
134
+ " .editorconfig"
135
+ ]
136
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://raw.githubusercontent.com/gary-kim/nc-build-script/master/config.schema.json" ,
3
+ "version" : " v21.0.4" ,
4
+ "versionString" : " 21.0.4, Gary Kim Personal Build" ,
5
+ "repo" : " https://github.com/nextcloud/server" ,
6
+ "name" : " nextcloud" ,
7
+ "exclude" : [
8
+ " /.*.yml" ,
9
+ " .editorconfig" ,
10
+ " .git" ,
11
+ " .git*" ,
12
+ " .eslintrc.js" ,
13
+ " .jshintrc" ,
14
+ " .mailmap" ,
15
+ " .tag" ,
16
+ " /*.md" ,
17
+ " /composer.json" ,
18
+ " /composer.lock" ,
19
+ " COPYING-README" ,
20
+ " Makefile" ,
21
+ " *.sh" ,
22
+ " babel.config.js" ,
23
+ " package.json" ,
24
+ " package-lock.json" ,
25
+ " webpack.common.js" ,
26
+ " webpack.dev.js" ,
27
+ " webpack.prod.js" ,
28
+ " .github" ,
29
+ " .idea" ,
30
+ " .tx" ,
31
+ " /build" ,
32
+ " /contribute" ,
33
+ " tests" ,
34
+ " .l10nignore" ,
35
+ " /core/src" ,
36
+ " /core/webpack.js" ,
37
+ " /apps/*/webpack.js" ,
38
+ " /apps/*/src" ,
39
+ " /apps/*/*.md"
40
+ ],
41
+ "apps" : {
42
+ "activity" : {
43
+ "repo" : " https://github.com/nextcloud/activity"
44
+ },
45
+ "files_pdfviewer" : {
46
+ "repo" : " https://github.com/nextcloud/files_pdfviewer"
47
+ },
48
+ "files_rightclick" : {
49
+ "repo" : " https://github.com/nextcloud/files_rightclick"
50
+ },
51
+ "files_videoplayer" : {
52
+ "repo" : " https://github.com/nextcloud/files_videoplayer"
53
+ },
54
+ "firstrunwizard" : {
55
+ "repo" : " https://github.com/nextcloud/firstrunwizard"
56
+ },
57
+ "logreader" : {
58
+ "repo" : " https://github.com/nextcloud/logreader"
59
+ },
60
+ "nextcloud_announcements" : {
61
+ "repo" : " https://github.com/nextcloud/nextcloud_announcements"
62
+ },
63
+ "notifications" : {
64
+ "repo" : " https://github.com/nextcloud/notifications"
65
+ },
66
+ "password_policy" : {
67
+ "repo" : " https://github.com/nextcloud/password_policy"
68
+ },
69
+ "photos" : {
70
+ "repo" : " https://github.com/nextcloud/photos"
71
+ },
72
+ "privacy" : {
73
+ "repo" : " https://github.com/nextcloud/privacy"
74
+ },
75
+ "recommendations" : {
76
+ "repo" : " https://github.com/nextcloud/recommendations"
77
+ },
78
+ "serverinfo" : {
79
+ "repo" : " https://github.com/nextcloud/serverinfo"
80
+ },
81
+ "survey_client" : {
82
+ "repo" : " https://github.com/nextcloud/survey_client"
83
+ },
84
+ "testing" : {
85
+ "remove" : true
86
+ },
87
+ "text" : {
88
+ "repo" : " https://github.com/nextcloud/text"
89
+ },
90
+ "viewer" : {
91
+ "repo" : " https://github.com/nextcloud/viewer"
92
+ },
93
+ "updater" : {
94
+ "repo" : " https://github.com/nextcloud/updater" ,
95
+ "exclude" : [
96
+ " !updater.phar" ,
97
+ " !index.php" ,
98
+ " **"
99
+ ],
100
+ "appsDir" : " ./"
101
+ },
102
+ "skeleton" : {
103
+ "repo" : " https://github.com/nextcloud/example-files" ,
104
+ "remove" : " continue" ,
105
+ "appsDir" : " ./core" ,
106
+ "version" : " stable21"
107
+ }
108
+ },
109
+ "globalExclude" : [
110
+ " .git" ,
111
+ " .git*" ,
112
+ " /node_modules" ,
113
+ " /tests" ,
114
+ " /.*.yml" ,
115
+ " /README.md" ,
116
+ " /CONTRIBUTING.md" ,
117
+ " /CHANGELOG.md" ,
118
+ " /Makefile" ,
119
+ " /.tx" ,
120
+ " /.github" ,
121
+ " /.l10nignore" ,
122
+ " /package.json" ,
123
+ " /package-lock.json" ,
124
+ " /.gitattributes" ,
125
+ " .babelrc" ,
126
+ " .eslintrc.js" ,
127
+ " build.xml" ,
128
+ " /webpack.common.js" ,
129
+ " /webpack.dev.js" ,
130
+ " /webpack.prod.js" ,
131
+ " /src" ,
132
+ " /cypress" ,
133
+ " /cypress.json" ,
134
+ " .editorconfig"
135
+ ]
136
+ }
You can’t perform that action at this time.
0 commit comments