-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
osx build with unittest #12
Closed
Closed
Changes from 5 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
e30e71f
osx build with unittest
gyanesh-m 3e19aa0
minor fix
gyanesh-m 66872b2
Add travis file
gyanesh-m ea24365
Merge branch 'osx-build-test' of https://github.com/gyanesh-m/gensim-…
gyanesh-m 6d73acf
Make unittest verbose and increase timeout
gyanesh-m 7c58269
Add fast version check, make doc2vec tests verbose & revert travis fi…
gyanesh-m a86f216
Add tests in forge_test.sh
gyanesh-m 17f2041
fix test_fast check
gyanesh-m 4648966
Fetch test_fast.py and then try
gyanesh-m a0d1e01
Retry with curl
gyanesh-m 107faad
Make debug logs visible.
gyanesh-m ace8fd1
Fetch and debug doc2vec test
gyanesh-m 5a284bd
Display fast version
gyanesh-m 97eb1aa
Display fast version
gyanesh-m 21bb7c0
Debug tests for word2vec and fasttext
gyanesh-m 9ba5e5e
Try fasttext first
gyanesh-m 65bac25
Merge branch 'osx-build-test' of https://github.com/gyanesh-m/gensim-…
gyanesh-m 770a8de
limit workaround
gyanesh-m 2593aa8
Retry after curl
gyanesh-m 2d40131
Remove accuracy test and try rest
gyanesh-m 2efbe68
Test for complete w2v
gyanesh-m 980ef3d
Add profiling for word2vec
gyanesh-m 4b36ce3
Fix minor error
gyanesh-m 1ccf055
Retry with pytest
gyanesh-m 565ea05
Fix errors and retry using existing test code
gyanesh-m 7468d9a
Fix minor error
gyanesh-m f651347
Fix minor error
gyanesh-m f74bc62
Add dependency for meta.yaml
gyanesh-m 8c382de
Install pytest-profiling from source.
gyanesh-m 62156e2
Change profiler to cprofile and retry
gyanesh-m 1e72ae1
Add blas and openblas requirement
gyanesh-m 55ce812
Remove variant
gyanesh-m b1d757a
Set number of threads to 1 and retry
gyanesh-m b7de836
Add path information
gyanesh-m cdbac2d
minor fix
gyanesh-m 4e1b59a
Add flags info
gyanesh-m b9c9b7c
Remove thread restriction
gyanesh-m cf68967
Add path info
gyanesh-m File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# This file was generated automatically from conda-smithy. To update this configuration, | ||
# update the conda-forge.yml and/or the recipe/meta.yaml. | ||
|
||
language: generic | ||
|
||
os: osx | ||
osx_image: xcode6.4 | ||
|
||
env: | ||
matrix: | ||
|
||
- CONDA_PY=27 | ||
- CONDA_PY=35 | ||
- CONDA_PY=36 | ||
global: | ||
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml. | ||
- secure: "ecN7i24QmsWbGKfWOmzAj56rvl5Hh298I3OOFeED99DxJKlpucgxgXMOC2rYDVU8bMRVGZZxLkN1sMyowyM9uaWzrL/N6pA27AvOImMWGMVy7MOYhWHsTK73NAhuIxMMByqtQiOs9gEiOpJaQwxOQSDynae4rSCvul1bTeOyOcbsdk2cT8mkEKfUxy6M50wA20TvW/Q88lEmnC0C1Pa0dysJ85G29jBuH8yh3p4KwtiEyBNfvffqeQuUo1qJWNr9YEXXi/Aq18+DDsR3vLcSHSXMuKUHQ/TE7gq2LAAWEYkEGtOGiQFNeoFujSdmZ5dom6N9uLo/0Ta75VCZoytVgJTADgeghinyBCTBgoXjy3C4e7k/DHaBGdS1ZD42s4MLOYeAU8nJbjTGIlMzdfLzO6KjkLGTk4TBQm7/sDJiSUlf5wq9SrTB3O1UIlwUM5sS5MUC+xg3Btmz/W0HvtzI66oQoFjoh3QQnbGJM1MqpYqcR8QJRofSNfFzW8WDPhEm3bn8AlbjyNY1v9C0zZgHTRuT1Put46u7T0O2W4p6/0U+dsfv+6Iq5VxeKO2ptZRRpBX95Kf3KwEFgHyFsk6BQArU9Ijo3Ud+39wVcD5y9P9iKVugvdoBtL3yl74royeaXZXVwmhKYTYRTBMxe4Ab1Oqdan469Mj5d2JmTnYiKF4=" | ||
|
||
|
||
before_install: | ||
# Fast finish the PR. | ||
- | | ||
(curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ | ||
python - -v --ci "travis" "${TRAVIS_REPO_SLUG}" "${TRAVIS_BUILD_NUMBER}" "${TRAVIS_PULL_REQUEST}") || exit 1 | ||
|
||
# Remove homebrew. | ||
- | | ||
echo "" | ||
echo "Removing homebrew from Travis CI to avoid conflicts." | ||
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew | ||
chmod +x ~/uninstall_homebrew | ||
~/uninstall_homebrew -fq | ||
rm ~/uninstall_homebrew | ||
|
||
|
||
install: | ||
# Install Miniconda. | ||
- | | ||
echo "" | ||
echo "Installing a fresh version of Miniconda." | ||
MINICONDA_URL="https://repo.continuum.io/miniconda" | ||
MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh" | ||
curl -L -O "${MINICONDA_URL}/${MINICONDA_FILE}" | ||
bash $MINICONDA_FILE -b | ||
|
||
# Configure conda. | ||
- | | ||
echo "" | ||
echo "Configuring conda." | ||
source /Users/travis/miniconda3/bin/activate root | ||
conda config --remove channels defaults | ||
conda config --add channels defaults | ||
conda config --add channels conda-forge | ||
conda config --set show_channel_urls true | ||
conda install --yes --quiet conda-forge-build-setup | ||
source run_conda_forge_build_setup | ||
|
||
script: | ||
- travis_wait conda build ./recipe | ||
|
||
- travis_wait upload_or_check_non_existence ./recipe conda-forge --channel=main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this doesn't look like the solution, but you can try (in debugging propose).