Skip to content

Commit 7c4644a

Browse files
committed
[ci] add macos 12 aka xcode14 for travis
1 parent 9da26b1 commit 7c4644a

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.travis.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)