Skip to content

Commit 79061b9

Browse files
committed
Add new Nextcloud versions
Signed-off-by: Gary Kim <gary@garykim.dev>
1 parent 03e2a84 commit 79061b9

File tree

6 files changed

+555
-5
lines changed

6 files changed

+555
-5
lines changed

.drone.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ trigger:
6464
---
6565
kind: pipeline
6666
type: docker
67-
name: nc-19-test
67+
name: nc-20-test
6868

6969
steps:
7070
- name: node-modules
@@ -74,7 +74,7 @@ steps:
7474
- name: test-run
7575
image: node:13
7676
commands:
77-
- npm run start -- build --nc-version v19.0.12
77+
- npm run start -- build --nc-version v20.0.12
7878

7979
trigger:
8080
branch:
@@ -85,7 +85,7 @@ trigger:
8585
---
8686
kind: pipeline
8787
type: docker
88-
name: nc-20-test
88+
name: nc-21-test
8989

9090
steps:
9191
- name: node-modules
@@ -95,7 +95,7 @@ steps:
9595
- name: test-run
9696
image: node:13
9797
commands:
98-
- npm run start -- build --nc-version v20.0.10
98+
- npm run start -- build --nc-version v21.0.4
9999

100100
trigger:
101101
branch:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v21.0.1
1+
v22.0.0

configs/v20.0.12.json

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
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+
}

configs/v21.0.4.json

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
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+
}

0 commit comments

Comments
 (0)