Skip to content
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

Move to Circle CI #163

Merged
merged 33 commits into from
Jan 19, 2021
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
72e6174
Add .circleci/config.yml
sampan501 Jan 18, 2021
cdb8b7d
remove travis config and lower parallel
sampan501 Jan 18, 2021
c82e398
use new circleci config file
sampan501 Jan 18, 2021
a46d25f
fix setup.py init
sampan501 Jan 18, 2021
72be0ff
add codecov package
sampan501 Jan 18, 2021
4d0e0fb
fix circle ci build issues
sampan501 Jan 18, 2021
fc64544
remove build from yaml
sampan501 Jan 18, 2021
af44bf1
remove build
sampan501 Jan 18, 2021
de7ae06
fix ci build errors
sampan501 Jan 18, 2021
3f175d3
rerun circle ci
sampan501 Jan 18, 2021
5aa1765
set docker image for deployment
sampan501 Jan 18, 2021
df6c7eb
parralelize circleci config
sampan501 Jan 18, 2021
758bb9b
Update config.yml
sampan501 Jan 18, 2021
2c13f43
fix cache issues
sampan501 Jan 18, 2021
bd5c0b0
don't cache test suite
sampan501 Jan 18, 2021
710c6ee
see if cimg to circleci fixes build
sampan501 Jan 19, 2021
01a6067
back to cimg
sampan501 Jan 19, 2021
4c49e67
fix cache issues
sampan501 Jan 19, 2021
4f122a5
remove test dependence on build
sampan501 Jan 19, 2021
ec8a0f1
change cache among python versions
sampan501 Jan 19, 2021
d1196e9
maintain order for build
sampan501 Jan 19, 2021
bfe2a70
change cache
sampan501 Jan 19, 2021
fdf4ea0
run on lowest environment packages
sampan501 Jan 19, 2021
77411c9
use min python versions
sampan501 Jan 19, 2021
6ce67c7
don't test 3.8
sampan501 Jan 19, 2021
74277bb
add joblib as a dependency
sampan501 Jan 19, 2021
6b379fd
add joblib
sampan501 Jan 19, 2021
6675672
set llvm version
sampan501 Jan 19, 2021
7a40877
update llvm before numba
sampan501 Jan 19, 2021
9702dcb
workers default should be 1
sampan501 Jan 19, 2021
ae0297f
fix python 3.7 failings
sampan501 Jan 19, 2021
3b8dce3
raise base sklearn package
sampan501 Jan 19, 2021
fbc0c33
remove smoke test
sampan501 Jan 19, 2021
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
Prev Previous commit
Next Next commit
change cache among python versions
  • Loading branch information
sampan501 committed Jan 19, 2021
commit ec8a0f1c4698c77763be4c2dd3be77248a6499c1
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workflows:
jobs:
build:
docker:
- image: cimg/python:3.7
- image: cimg/python:3.8
steps:
- checkout
- restore_cache:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: deps2-{{ .Branch }}-{{ checksum "requirements.txt" }}
key: deps<< parameters.version >>-{{ .Branch }}-{{ checksum "requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -69,7 +69,7 @@ jobs:
pip install -r requirements.txt
pip install -e .
- save_cache:
key: deps2-{{ .Branch }}-{{ checksum "requirements.txt" }}
key: deps<< parameters.version >>-{{ .Branch }}-{{ checksum "requirements.txt" }}
paths:
- "venv"
- run:
Expand All @@ -88,12 +88,12 @@ jobs:
sudo pip install hyppo
integration:
docker:
- image: cimg/python:3.7
- image: cimg/python:3.8
steps:
- run: echo "It works!"
deploy:
docker:
- image: cimg/python:3.7
- image: cimg/python:3.8
steps:
- checkout
- restore_cache:
Expand Down