Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit 729c2c7

Browse files
author
Christiane Ruetten
committed
Adding Travis CI integration
1 parent bae17a7 commit 729c2c7

File tree

4 files changed

+47
-1
lines changed

4 files changed

+47
-1
lines changed

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
sudo: required
2+
os:
3+
- linux
4+
# OS X python is currently broken due to SSL include problems
5+
# See
6+
- osx
7+
dist: trusty
8+
9+
language: generic
10+
11+
# build dependencies
12+
install:
13+
- pwd
14+
- ls -alR
15+
- bootstrap/bootstrap.sh
16+
# Fix openssl / python hashlib on OS X Travis CI
17+
- if which brew &>/dev/null ; then export LDFLAGS=-L/usr/local/opt/openssl/lib CPPFLAGS=-I/usr/local/opt/openssl/include PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig ; fi
18+
19+
# command to run tests, takes care of python dependencies
20+
script: python setup.py test

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# TLS Canary
22

3+
[![Build Status](https://travis-ci.org/mozilla/tls-canary.svg?branch=master)](https://travis-ci.org/mozilla/tls-canary)
4+
[![License](https://img.shields.io/badge/license-MPL2-blue.svg)](https://raw.githubusercontent.com/mozilla/tls-canary/master/LICENSE.txt)
35
[![PyPI Package version](https://badge.fury.io/py/tlscanary.svg)](https://pypi.python.org/pypi/tlscanary)
46

57
TLS Canary is a [TLS/SSL](https://en.wikipedia.org/wiki/Transport_Layer_Security) testing framework for the
@@ -43,9 +45,12 @@ The script may or may not work for your other favourite Debian-based distributio
4345
### Dependencies for Mac users
4446
Assuming that your're using [Homebrew](https://brew.sh/) for package management, this should set you up:
4547
```
46-
brew install python p7zip go openssl libffi
48+
brew install openssl libffi python p7zip go
4749
```
4850

51+
The script [osx_bootstrap.sh](bootstrap/osx_bootstrap.sh) provides bootstrapping for Travis CI's Mac OS X instances
52+
using homebrew for package management. It may work for your OS X desktop environment as well.
53+
4954
### Dependencies for Windows users
5055
Windows support targets **PowerShell 5.1** on **Windows 10**. Windows 7 and 8 are generally able to run TLS Canary,
5156
but expect minor unicode encoding issues in terminal logging output.

bootstrap/bootstrap.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
if which apt-get &>/dev/null
3+
then
4+
echo "Bootstrapping for Linux / apt-get"
5+
echo "sudo required"
6+
sudo $(dirname "$0")/linux_bootstrap.sh
7+
elif which brew &>/dev/null
8+
then
9+
echo "Bootstrapping for Mac OS X / Homebrew"
10+
$(dirname "$0")/osx_bootstrap.sh
11+
else
12+
echo "ERROR: can't provide automatic bootstrapping"
13+
exit 5
14+
fi

bootstrap/osx_bootstrap.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#/bin/bash
2+
3+
brew ls --versions openssl || brew install openssl
4+
brew ls --versions libffi || brew install libffi
5+
brew ls --versions python || brew install python
6+
brew ls --versions p7zip || brew install p7zip
7+
brew ls --versions go || brew install go

0 commit comments

Comments
 (0)