Skip to content

Commit f27826a

Browse files
committed
Runs the test only in linux.
1 parent 0312290 commit f27826a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis-vult.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ then
1111
fi
1212

1313
# builds the release version
14-
make all
14+
make
1515
# prepare to package
1616
cp ./_build/src/vultc.native ./vultc
1717
if [ $TRAVIS_OS_NAME == linux ];
1818
then
19+
make all
1920
tar -cvzf vult-linux.tar.gz vultc runtime/vultin.h runtime/vultin.cpp
2021
else
2122
tar -cvzf vult-osx.tar.gz vultc runtime/vultin.h runtime/vultin.cpp
@@ -32,4 +33,4 @@ vultc --help
3233
#cd ..
3334
#cd ..
3435
# runs the performance tests
35-
make perf
36+
#make perf

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ os:
1111
before_install:
1212
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
1313
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y luajit ; fi
14-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install luajit ; fi
1514

1615
deploy:
1716
skip_cleanup: true

src/version.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
let version = "\nv0.4.12\n"
1+
let version = "\nv0.4.13\n"

0 commit comments

Comments
 (0)