| #!/usr/bin/env bash |
| #/** |
| # * |
| # * Licensed to the Apache Software Foundation (ASF) under one |
| # * or more contributor license agreements. See the NOTICE file |
| # * distributed with this work for additional information |
| # * regarding copyright ownership. The ASF licenses this file |
| # * to you under the Apache License, Version 2.0 (the |
| # * "License"); you may not use this file except in compliance |
| # * with the License. You may obtain a copy of the License at |
| # * |
| # * http://www.apache.org/licenses/LICENSE-2.0 |
| # * |
| # * Unless required by applicable law or agreed to in writing, software |
| # * distributed under the License is distributed on an "AS IS" BASIS, |
| # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # * See the License for the specific language governing permissions and |
| # * limitations under the License. |
| # */ |
| |
| # This script is used by Jenkins to compile and test Singa |
| |
| echo Compile and test Singa... |
| echo workspace: `pwd` |
| echo OS version: `cat /etc/issue` |
| echo kernal version: `uname -a` |
| echo parameters: $1 |
| echo parameters: $2 |
| COMMIT=`git rev-parse --short HEAD` |
| echo COMMIT HASH: $COMMIT |
| |
| # set parameters |
| CUDA="OFF" |
| if [ $1 = "CUDA" ]; then |
| CUDA="ON" |
| fi |
| |
| # TODO(wangwei) test python 3 according to env variable PY3K |
| |
| #if [ `uname` = "Darwin" ]; then |
| # EXTRA_ARGS="-DPYTHON_LIBRARY=`python-config --prefix`/lib/libpython2.7.dylib -DPYTHON_INCLUDE_DIR=`python-config --prefix`/include/python2.7/" |
| #fi |
| |
| rm -rf build |
| mkdir build |
| # compile c++ code |
| cd build |
| if [ $2 = "PYTHON3" ]; then |
| cmake -DUSE_CUDA=$CUDA -DENABLE_TEST=ON -DUSE_PYTHON3=ON $EXTRA_ARGS ../ |
| else |
| cmake -DUSE_CUDA=$CUDA -DENABLE_TEST=ON $EXTRA_ARGS ../ |
| fi |
| make |
| # unit test cpp code |
| ./bin/test_singa --gtest_output=xml:./gtest.xml |
| # unit test python code |
| cd ../test/python |
| if [ $2 = "PYTHON3" ]; then |
| PYTHONPATH=../../build/python/ python3 run.py |
| else |
| PYTHONPATH=../../build/python/ python run.py |
| fi |
| echo Job finished... |