mirror of
https://git.cloudron.io/cloudron/gitea-app
synced 2025-09-29 08:23:24 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
10df3c6ba9 | ||
|
047ec295bc | ||
|
31b8a17230 |
@@ -323,3 +323,6 @@
|
|||||||
* Update Gitea to 1.8.3
|
* Update Gitea to 1.8.3
|
||||||
* Update manifest to v2
|
* Update manifest to v2
|
||||||
|
|
||||||
|
[1.13.0]
|
||||||
|
* Update Gitea to 1.9.0
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
"author": "Gitea developers",
|
"author": "Gitea developers",
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"tagline": "A painless self-hosted Git Service",
|
"tagline": "A painless self-hosted Git Service",
|
||||||
"version": "1.12.0",
|
"version": "1.13.0",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages Gitea <upstream>1.8.3</upstream>
|
This app packages Gitea <upstream>1.9.0</upstream>
|
||||||
|
|
||||||
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
|
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
|
||||||
|
|
||||||
|
@@ -14,7 +14,7 @@ RUN passwd -d git
|
|||||||
|
|
||||||
RUN mkdir -p /home/git/gitea
|
RUN mkdir -p /home/git/gitea
|
||||||
WORKDIR /home/git
|
WORKDIR /home/git
|
||||||
RUN curl -L https://dl.gitea.io/gitea/1.8.3/gitea-1.8.3-linux-amd64 -o /home/git/gitea/gitea \
|
RUN curl -L https://dl.gitea.io/gitea/1.9.0/gitea-1.9.0-linux-amd64 -o /home/git/gitea/gitea \
|
||||||
&& chmod +x /home/git/gitea/gitea
|
&& chmod +x /home/git/gitea/gitea
|
||||||
|
|
||||||
# setup config paths
|
# setup config paths
|
||||||
|
8
test/package-lock.json
generated
8
test/package-lock.json
generated
@@ -351,12 +351,6 @@
|
|||||||
"safer-buffer": "^2.1.0"
|
"safer-buffer": "^2.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ejs": {
|
|
||||||
"version": "2.6.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz",
|
|
||||||
"integrity": "sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"emoji-regex": {
|
"emoji-regex": {
|
||||||
"version": "7.0.3",
|
"version": "7.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
|
||||||
@@ -1273,7 +1267,7 @@
|
|||||||
},
|
},
|
||||||
"reduce-component": {
|
"reduce-component": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "http://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz",
|
||||||
"integrity": "sha1-4Mk1QsV0UhvqE98PlIjtgqt3xdo="
|
"integrity": "sha1-4Mk1QsV0UhvqE98PlIjtgqt3xdo="
|
||||||
},
|
},
|
||||||
"request": {
|
"request": {
|
||||||
|
@@ -9,9 +9,7 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ejs": "^2.6.1",
|
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mkdirp": "^0.5.1",
|
|
||||||
"mocha": "^6.1.4",
|
"mocha": "^6.1.4",
|
||||||
"rimraf": "^2.6.3",
|
"rimraf": "^2.6.3",
|
||||||
"superagent": "^5.0.5"
|
"superagent": "^5.0.5"
|
||||||
|
@@ -12,14 +12,11 @@
|
|||||||
require('chromedriver');
|
require('chromedriver');
|
||||||
|
|
||||||
var execSync = require('child_process').execSync,
|
var execSync = require('child_process').execSync,
|
||||||
ejs = require('ejs'),
|
|
||||||
expect = require('expect.js'),
|
expect = require('expect.js'),
|
||||||
fs = require('fs'),
|
fs = require('fs'),
|
||||||
mkdirp = require('mkdirp'),
|
|
||||||
path = require('path'),
|
path = require('path'),
|
||||||
rimraf = require('rimraf'),
|
rimraf = require('rimraf'),
|
||||||
superagent = require('superagent'),
|
superagent = require('superagent');
|
||||||
webdriver = require('selenium-webdriver');
|
|
||||||
|
|
||||||
var by = require('selenium-webdriver').By,
|
var by = require('selenium-webdriver').By,
|
||||||
until = require('selenium-webdriver').until,
|
until = require('selenium-webdriver').until,
|
||||||
@@ -418,7 +415,7 @@ return done();
|
|||||||
|
|
||||||
// No SSO
|
// No SSO
|
||||||
it('install app (no sso)', function () {
|
it('install app (no sso)', function () {
|
||||||
execSync('cloudron install --new --wait --no-sso --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
execSync(`cloudron install --new --wait --no-sso --location ${LOCATION} -p SSH_PORT=${SSH_PORT}`, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||||
});
|
});
|
||||||
|
|
||||||
it('can get app information', function () {
|
it('can get app information', function () {
|
||||||
|
Reference in New Issue
Block a user