Skip to content

Commit

Permalink
revert circleci to last working commit 4697db0
Browse files Browse the repository at this point in the history
Summary: See title.

Reviewed By: JoelMarcey

Differential Revision: D6599907

fbshipit-source-id: 5499f2e0c0a98f1194a49c1a8244d97f00ffc2c2
  • Loading branch information
cpuhrsch authored and facebook-github-bot committed Dec 19, 2017
1 parent f138f3a commit 5542ce0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 80 deletions.
1 change: 1 addition & 0 deletions .circleci/cmake_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
RESULTDIR=result
DATADIR=data

sudo apt-get install cmake
./.circleci/pull_data.sh
mkdir buildc && cd buildc && cmake .. && make && cd ..
cp buildc/fasttext .
Expand Down
105 changes: 25 additions & 80 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,60 +23,65 @@

version: 2
jobs:
"py361-python":
"py361":
docker:
- image: circleci/python:3.6.1
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_circleimg.sh
. .circleci/python_test.sh
sudo pip install pybind11
sudo python setup.py install
. .circleci/cmake_test.sh
"py353-python":
"py353":
docker:
- image: circleci/python:3.5.3
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_circleimg.sh
. .circleci/python_test.sh
sudo pip install pybind11
sudo python setup.py install
. .circleci/cmake_test.sh
"py346-python":
"py346":
docker:
- image: circleci/python:3.4.6
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_circleimg.sh
. .circleci/python_test.sh
sudo pip install pybind11
sudo python setup.py install
. .circleci/cmake_test.sh
"py336-python":
"py336":
docker:
- image: circleci/python:3.3.6
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_circleimg.sh
. .circleci/python_test.sh
sudo pip install pybind11
sudo python setup.py install
. .circleci/cmake_test.sh
"py2713-python":
"py2713":
docker:
- image: circleci/python:2.7.13
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_circleimg.sh
. .circleci/python_test.sh
sudo pip install pybind11
sudo python setup.py install
. .circleci/cmake_test.sh
"gcc5":
docker:
Expand Down Expand Up @@ -118,61 +123,6 @@ jobs:
command: |
. .circleci/gcc_test.sh
"debian-wheezy-gcc":
docker:
- image: debian:wheezy
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_debian.sh
. .circleci/gcc_test.sh
"debian-wheezy-cmake":
docker:
- image: debian:wheezy
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_debian.sh
. .circleci/cmake_test.sh
"debian-jessie-gcc":
docker:
- image: debian:jessie
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_debian.sh
. .circleci/gcc_test.sh
"debian-jessie-cmake":
docker:
- image: debian:jessie
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_debian.sh
. .circleci/cmake_test.sh
"debian-jessie-python":
docker:
- image: debian:jessie
working_directory: ~/repo
steps:
- checkout
- run:
command: |
. .circleci/setup_debian.sh
. .circleci/python_test.sh
"website-build":
docker:
- image: node:latest
Expand All @@ -190,18 +140,13 @@ workflows:
version: 2
build:
jobs:
- "py361-python"
- "py353-python"
- "py346-python"
- "py336-python"
- "py2713-python"
- "py361"
- "py353"
- "py346"
- "py336"
- "py2713"
- "gcc5"
- "gcc6"
- "gcc7"
- "gcclatest"
- "debian-wheezy-gcc"
- "debian-wheezy-cmake"
- "debian-jessie-gcc"
- "debian-jessie-cmake"
- "debian-jessie-python"
- "website-build"

0 comments on commit 5542ce0

Please sign in to comment.