10000 Create .travis.yml by den-run-ai · Pull Request #3 · pythonnet/pythonnet-docker · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.

Create .travis.yml #3

Merged
merged 4 commits into from
Apr 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
sudo: required

services:
- docker

before_install:
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"

script:
./build_and_deploy.sh
2 changes: 1 addition & 1 deletion Dockerfile-python2.7-mono4.8.0-pythonnet2.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update \
&& echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" >> /etc/apt/sources.list.d/mono-xamarin.list \
&& echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" >> /etc/apt/sources.list.d/mono-xamarin.list \
&& apt-get update \
&& apt-get install -y mono-complete=4.8.0.495-0xamarin1 \
&& apt-get install -y mono-complete=4.8.0.520-0xamarin3 \
&& rm -rf /var/lib/apt/lists/* /tmp/*

RUN pip install pythonnet==2.3.0
2 changes: 1 addition & 1 deletion Dockerfile-python3.5-mono4.8.0-pythonnet2.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update \
&& echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" >> /etc/apt/sources.list.d/mono-xamarin.list \
&& apt-get update \
&& apt-get install -y clang \
&& apt-get install -y mono-complete=4.8.0.495-0xamarin1 \
&& apt-get install -y mono-complete=4.8.0.520-0xamarin3 \
&& rm -rf /var/lib/apt/lists/* /tmp/*

RUN pip install pycparser==2.17 && pip install pythonnet==2.3.0
0