Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
bitmask-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
leap
bitmask-dev
Merge requests
!212
Run OSX test on travis
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Run OSX test on travis
travis_osx_builds
into
master
Overview
3
Commits
1
Pipelines
1
Changes
1
Closed
Varac
requested to merge
travis_osx_builds
into
master
7 years ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
Related:
#9092
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
eb72cc64
1 commit,
7 years ago
1 file
+
22
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.travis.yml
0 → 100644
+
22
−
0
Options
---
os
:
osx
# Xcode 6.4, OS X 10.10
osx_image
:
xcode6.4
# language: python is not supported on OSX
# see https://github.com/travis-ci/travis-ci/issues/2312
language
:
generic
before_install
:
-
brew update
-
brew install python
# Only if we need a newer version of openssl (1.0.2l instead of 1.0.2a-1)
# - brew upgrade OpenSSL
-
pip2 install virtualenv
# https://stackoverflow.com/questions/36555679/fatal-error-in-building-sqlcipher-openssl-rand-h-file-not-found
-
brew link openssl --force --overwrite
-
virtualenv env -p python2.7
-
source env/bin/activate
-
pip2 install tox
script
:
tox --recreate -e py27-dev
Loading