Adding circleci config

LT1AB
piyushrpt 2019-04-05 09:56:02 -07:00
parent 4c277e354c
commit 2b1f2d8b82
1 changed files with 26 additions and 0 deletions

26
.circleci/config.yml Normal file
View File

@ -0,0 +1,26 @@
version: 2
jobs:
build:
docker:
- image: hysds/pge-base:latest
user: root
working_directory: /root
steps:
- checkout
- run:
name: Install development tools
command: |
set -ex
yum update -y
yum groupinstall -y "development tools"
- run:
name: Install ISCE requirements
command: |
set -ex
. /opt/conda/bin/activate root
conda install --yes cython gdal h5py libgdal pytest numpy fftw scipy basemap scons opencv hdf4 hdf5 netcdf4 libgcc libstdcxx-ng cmake
yum install -y uuid-devel x11-devel motif-devel jq
ln -s /opt/conda/bin/cython /opt/conda/bin/cython3