File tree 1 file changed +34
-0
lines changed
1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : generic
2
+
3
+ jobs :
4
+ include :
5
+ - os : osx
6
+ arch : amd64
7
+ osx_image : xcode14.2
8
+
9
+ env :
10
+ - LISP : sbcl
11
+
12
+ install :
13
+ - echo $PWD
14
+ - ls
15
+ - bash --version
16
+ - zsh <(curl -s https://raw.githubusercontent.com/digikar99/lisp-travis-lite/master/run.sh)
17
+
18
+ script :
19
+ - echo $PATH
20
+
21
+ - ls
22
+ - echo Testing without numpy
23
+ - cl --eval '(push # P"./" ql:*local-project-directories*)' --eval '(ql:quickload "py4cl2-cffi")' --eval '(assert (= 5 (py4cl2-cffi:pyeval 5)))' --eval '(print py4cl2-cffi:*internal-features*)'
24
+
25
+ - echo Installing python modules
26
+ - python -m ensurepip --upgrade
27
+ - python3 -m venv ./py4cl2-cffi/
28
+ - source ./py4cl2-cffi/bin/activate
29
+ - pip3 install numpy
30
+ - pip3 install networkx
31
+ - pip3 install matplotlib
32
+
33
+ notifications :
34
+ email : false
You can’t perform that action at this time.
0 commit comments