Skip to content

Commit 4a21005

Browse files
committed
switch to azure pipelines
1 parent 48c5da1 commit 4a21005

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ inspect: ## inspect container properties - pretty: 'make inspect | jq .' requir
3939

4040
.PHONY: test
4141
test: ## test container with builtin tests
42-
docker run -it --rm $(CONTAINERNAME) test
43-
docker run -it --rm $(CONTAINERNAME) test_irule
42+
docker run --rm $(CONTAINERNAME) test
43+
docker run --rm $(CONTAINERNAME) test_irule
4444

4545
.PHONY: logs
4646
logs: ## show docker logs for container (ONLY possible while container is running)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# docker-testcl
22

3-
[![Build Status](https://travis-ci.org/joxz/docker-testcl.svg?branch=master)](https://travis-ci.org/joxz/docker-testcl)
3+
[![Build Status](https://dev.azure.com/john-doe1/docker-testcl/_apis/build/status/joxz.docker-testcl?branchName=master)](https://dev.azure.com/john-doe1/docker-testcl/_build/latest?definitionId=5&branchName=master)
44
[![docker Hub Pulls](https://img.shields.io/docker/pulls/jones2748/docker-testcl.svg?style=popout)](https://img.shields.io/docker/pulls/jones2748/docker-testcl.svg?style=popout)
55

66
Docker container for testing iRules with [TesTcl](https://testcl.com/)

azure-pipelines.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: $(Build.DefinitionName)_$(Date:yyyyMMdd))
2+
pr:
3+
- master
4+
5+
pool:
6+
vmImage: 'ubuntu-16.04'
7+
8+
steps:
9+
- script: make build-no-cache
10+
displayName: build container
11+
- script: docker images
12+
displayName: show images
13+
- script: make test
14+
displayName: make test
15+
- script: make inspect
16+
displayName: docker inspect container
17+
- script: make history
18+
displayName: docker history

0 commit comments

Comments
 (0)