Skip to content

Commit 3d14722

Browse files
committed
chore(.travis.yml) add .travis.yml
1 parent bdd37ae commit 3d14722

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: bash
2+
sudo: required
3+
services:
4+
- docker
5+
script:
6+
- make docker-build docker-test
7+
notifications:
8+
slack:
9+
rooms:
10+
- drycc:xKmLlmJR4hfRAgVIOwdpAoC9#drycc

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.5.1-alpine
1+
FROM python:3.6-alpine
22

33
COPY . /app
44
WORKDIR /app

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ BUILD_CMD := $(MKDOCSBUILD) --site-dir $(BUILDDIR) && \
2121
echo && \
2222
echo "Build finished. The HTML pages are in $(BUILDDIR)."
2323

24-
TEST_CMD := grep -q "<title>Drycc Workflow Documentation</title>" _build/html/index.html && \
24+
TEST_CMD := grep -q "<title>Home - Drycc Workflow Documentation</title>" _build/html/index.html && \
2525
echo && \
2626
echo "Test finished. The HTML pages are in $(BUILDDIR)."
2727

@@ -52,4 +52,4 @@ docker-build:
5252
docker-serve:
5353
${DEV_ENV_CMD} ${IMAGE} $(MKDOCSSERVE)
5454

55-
run: docker-build docker-serve
55+
run: docker-build docker-serve

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.org/drycc/workflow.svg?branch=master)](https://travis-ci.org/drycc/workflow)
2+
13
# Drycc workflow
24

35
**Drycc Workflow** is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes][k8s-home] cluster, making it easy to deploy and manage applications.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
mkdocs==1.0.3
1+
mkdocs==1.0.4
22
markdown-checklist==0.4.1
33
markdown-include==0.5.1

0 commit comments

Comments
 (0)