mirror of
https://github.com/wekan/wekan.git
synced 2025-04-24 14:08:31 -04:00
Merge pull request #1017 from stephenmoloney/devel-local
changes to travis.yml.
This commit is contained in:
commit
96ddb9bfb2
5 changed files with 24 additions and 17 deletions
|
@ -125,7 +125,7 @@
|
||||||
"Checklists": true,
|
"Checklists": true,
|
||||||
"Settings": true,
|
"Settings": true,
|
||||||
"InvitationCodes": true,
|
"InvitationCodes": true,
|
||||||
"Winston":true
|
"Winston":true,
|
||||||
"JsonRoutes" : true
|
"JsonRoutes": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
29
.travis.yml
29
.travis.yml
|
@ -1,12 +1,17 @@
|
||||||
|
dist: trusty
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DOCKER_COMPOSE_VERSION: 1.11.2
|
TRAVIS_DOCKER_COMPOSE_VERSION: 1.12.0
|
||||||
|
TRAVIS_NODE_VERSION: 4.8.1
|
||||||
|
TRAVIS_NPM_VERSION: 4.4.4
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
- sudo apt-get update -y
|
||||||
|
- npm install -g npm@${TRAVIS_NPM_VERSION}
|
||||||
- sudo curl -fsSL https://get.docker.com/ | sh
|
- sudo curl -fsSL https://get.docker.com/ | sh
|
||||||
- if [ -e /usr/local/bin/docker-compose ]; then sudo rm /usr/local/bin/docker-compose; fi
|
- if [ -e /usr/local/bin/docker-compose ]; then sudo rm /usr/local/bin/docker-compose; fi
|
||||||
- sudo curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
|
- sudo curl -L https://github.com/docker/compose/releases/download/${TRAVIS_DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
|
||||||
- sudo chmod +x docker-compose
|
- sudo chmod +x docker-compose
|
||||||
- sudo mv docker-compose /usr/local/bin
|
- sudo mv docker-compose /usr/local/bin
|
||||||
- sudo docker-compose build --no-cache --force-rm
|
- sudo docker-compose build --no-cache --force-rm
|
||||||
|
@ -15,13 +20,13 @@ before_install:
|
||||||
# ^^ Note - need to come up with some way of checking the output from docker run
|
# ^^ Note - need to come up with some way of checking the output from docker run
|
||||||
# that it was a success... perhaps the nodejs server can output a success message?
|
# that it was a success... perhaps the nodejs server can output a success message?
|
||||||
|
|
||||||
#language: node_js
|
language: node_js
|
||||||
#
|
|
||||||
#node_js:
|
node_js:
|
||||||
# - "4.8.1"
|
- "${TRAVIS_NODE_VERSION}"
|
||||||
#
|
|
||||||
#install:
|
install:
|
||||||
# - "npm install"
|
- "npm install"
|
||||||
#
|
|
||||||
#script:
|
script:
|
||||||
# - "npm test"
|
- "npm test"
|
||||||
|
|
|
@ -16,7 +16,7 @@ ENV GOSU_VERSION=1.10
|
||||||
ENV NODE_VERSION ${NODE_VERSION:-v4.8.1}
|
ENV NODE_VERSION ${NODE_VERSION:-v4.8.1}
|
||||||
ENV METEOR_RELEASE ${METEOR_RELEASE:-1.4.4.1}
|
ENV METEOR_RELEASE ${METEOR_RELEASE:-1.4.4.1}
|
||||||
ENV USE_EDGE ${USE_EDGE:-false}
|
ENV USE_EDGE ${USE_EDGE:-false}
|
||||||
ENV METEOR_EDGE ${METEOR_EDGE:-1.4.4-rc.6}
|
ENV METEOR_EDGE ${METEOR_EDGE:-1.5-beta.17}
|
||||||
ENV NPM_VERSION ${NPM_VERSION:-4.5.0}
|
ENV NPM_VERSION ${NPM_VERSION:-4.5.0}
|
||||||
ENV ARCHITECTURE ${ARCHITECTURE:-linux-x64}
|
ENV ARCHITECTURE ${ARCHITECTURE:-linux-x64}
|
||||||
ENV SRC_PATH ${SRC_PATH:-./}
|
ENV SRC_PATH ${SRC_PATH:-./}
|
||||||
|
|
|
@ -85,8 +85,6 @@ First registered Wekan user will get [Admin Panel][features] on new
|
||||||
Docker and source based installs. You can also
|
Docker and source based installs. You can also
|
||||||
[enable Admin Panel manually][enable_adminpanel].
|
[enable Admin Panel manually][enable_adminpanel].
|
||||||
|
|
||||||
[Docker](https://github.com/wekan/wekan/wiki/Docker)
|
|
||||||
|
|
||||||
[![Deploy][heroku_button]][heroku_deploy]
|
[![Deploy][heroku_button]][heroku_deploy]
|
||||||
[![SignUp][indiehosters_button]][indiehosters_saas]
|
[![SignUp][indiehosters_button]][indiehosters_saas]
|
||||||
[![Deploy to Scalingo][scalingo_button]][scalingo_deploy]
|
[![Deploy to Scalingo][scalingo_button]][scalingo_deploy]
|
||||||
|
@ -95,6 +93,8 @@ Docker and source based installs. You can also
|
||||||
|
|
||||||
[VirtualBox][virtualbox]
|
[VirtualBox][virtualbox]
|
||||||
|
|
||||||
|
[Install via Docker](https://github.com/wekan/wekan/wiki/Docker)
|
||||||
|
|
||||||
[Install from source][install_source]
|
[Install from source][install_source]
|
||||||
|
|
||||||
[Install from source on Windows][installsource_windows]
|
[Install from source on Windows][installsource_windows]
|
||||||
|
|
|
@ -30,6 +30,8 @@ services:
|
||||||
- NPM_VERSION=${NPM_VERSION}
|
- NPM_VERSION=${NPM_VERSION}
|
||||||
- ARCHITECTURE=${ARCHITECTURE}
|
- ARCHITECTURE=${ARCHITECTURE}
|
||||||
- SRC_PATH=${SRC_PATH}
|
- SRC_PATH=${SRC_PATH}
|
||||||
|
- METEOR_EDGE=${METEOR_EDGE}
|
||||||
|
- USE_EDGE=${USE_EDGE}
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 80:80
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue