We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65bdf72 commit f7aecadCopy full SHA for f7aecad
.travis.yml
@@ -0,0 +1,12 @@
1
+language: nix
2
+
3
+before_install:
4
+ - nix-channel --list
5
+ - nix-channel --update
6
7
+script:
8
+ - curl -O http://arrayfire.s3.amazonaws.com/3.6.4/ArrayFire-v3.6.4_Linux_x86_64.sh
9
+ - chmod +x ArrayFire-v3.6.4_Linux_x86_64.sh
10
+ - ./Arrayfire_*_Linux_x86_64.sh --include-subdir --prefix=/opt
11
+ - ls -lah /opt/arrayfire/
12
+ - nix-shell --run test
shell.nix
@@ -16,6 +16,10 @@ in
16
'cabal v1-configure --enable-tests && \
17
cabal v1-build test && dist/build/test/test'
18
}
19
+ function test () {
20
+ cabal v1-configure --enable-tests && \
21
+ cabal v1-build test && dist/build/test/test
22
+ }
23
function doctest-runner () {
24
${pkgs.ag}/bin/ag -l | \
25
${pkgs.entr}/bin/entr sh -c \
0 commit comments