Compare commits

...

12 Commits

Author SHA1 Message Date
88e1a637ce 1.0.46 2019-11-24 13:49:48 +00:00
e0fa2b14b7 rename readme 2019-11-24 13:48:56 +00:00
5dccdbb9e9 rename readme 2019-11-24 13:48:52 +00:00
e3e2f86ac5 1.0.45 2019-11-24 13:46:38 +00:00
5fe8f04159 fix(core): update 2019-11-24 13:46:38 +00:00
e3b2144182 1.0.44 2019-11-24 13:43:09 +00:00
6c255d39f1 1.0.43 2019-11-23 22:28:31 +00:00
259195d267 fix(core): update 2019-11-23 22:28:31 +00:00
3395159064 1.0.42 2019-11-23 22:22:06 +00:00
7ce81d1a7c fix(core): update 2019-11-23 22:22:05 +00:00
96c116b0b5 1.0.41 2019-11-23 22:12:25 +00:00
b8a643d174 fix(core): update 2019-11-23 22:12:25 +00:00
6 changed files with 4 additions and 18 deletions

View File

@ -8,7 +8,6 @@ before_script:
- apk add --no-cache git openssl ca-certificates bash curl - apk add --no-cache git openssl ca-certificates bash curl
- apk add --no-cache make gcc g++ python linux-headers paxctl - apk add --no-cache make gcc g++ python linux-headers paxctl
- apk add --no-cache libgcc libstdc++ gnupg nodejs nodejs-npm - apk add --no-cache libgcc libstdc++ gnupg nodejs nodejs-npm
- apk add --no-cache krb5-libs
- update-ca-certificates - update-ca-certificates
- cp ./stack-fix.c /lib/ - cp ./stack-fix.c /lib/
- set -ex - set -ex
@ -21,22 +20,8 @@ before_script:
- npmci npm prepare - npmci npm prepare
stages: stages:
- test
- release - release
- trigger - trigger
- pages
testSTABLE:
stage: test
script:
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- lossless
- priv
release: release:
stage: release stage: release

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{ {
"name": "ht-docker-dbase", "name": "ht-docker-dbase",
"version": "1.0.40", "version": "1.0.46",
"lockfileVersion": 1 "lockfileVersion": 1
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "ht-docker-dbase", "name": "ht-docker-dbase",
"version": "1.0.40", "version": "1.0.46",
"description": "easy CI for docker images", "description": "easy CI for docker images",
"main": "index.js", "main": "index.js",
"directories": { "directories": {

View File

@ -18,7 +18,7 @@ int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_
pthread_attr_init(&local); pthread_attr_init(&local);
attr = &local; attr = &local;
} }
pthread_attr_setstacksize((void*)attr, 100 * 1024 * 1024); // 2 MB pthread_attr_setstacksize((void*)attr, 2 * 1024 * 1024); // 2 MB
func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create"); func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create");

View File

@ -1,3 +1,4 @@
node -v node -v
npm -v npm -v
npm init --yes
npmci -v npmci -v