mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-09 07:33:53 +01:00
21 lines
520 B
YAML
21 lines
520 B
YAML
sudo: true
|
|
|
|
language: python
|
|
python:
|
|
- "2.6"
|
|
|
|
before_script:
|
|
- sudo apt-get update
|
|
- sudo apt-get install gfortran liblapack-dev gcc
|
|
- sudo apt-get install graphviz
|
|
|
|
script:
|
|
- ./setup_environment.sh --robot
|
|
- source ./quantum_package.rc
|
|
- cp ./src/Makefile.config.gfortran ./src/Makefile.config
|
|
- ./scripts/compilation/create_ninja_build.py ./config/gfortran_example.cfg > build.ninja
|
|
- ./ninja/ninja -v
|
|
- ei_handler.py ocaml_global
|
|
- cd ocaml ; make ; cd -
|
|
- ./tests/unit_test/unit_test.py
|