forked from EiffelSoftware/EiffelStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (28 loc) · 881 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: eiffel
before_script:
- export current_dir=$PWD ; echo current_dir=$current_dir ; cd ..
- curl -sSL https://www.eiffel.org/setup/install.sh | bash -s nightly > eiffel.rc
- source ./eiffel.rc
- echo `ec -version`
- cd $current_dir
- export EIFFEL_SRC=$PWD/Src
- export EWEASEL=$PWD/eweasel
- export ISE_LIBRARY=$EIFFEL_SRC
- export XEBRA_LIBRARY=$EIFFEL_SRC/framework/web/xebra/eiffel_projects/library
- echo Check projects compilation status...
branches:
only:
- master
- develop
git:
depth: 1
env:
matrix:
- COMPILEALL_DIR=Src/Eiffel
- COMPILEALL_DIR=Src/framework
- COMPILEALL_DIR=Src/tools
- COMPILEALL_DIR=Src/library
script:
- compile_all -ecb -melt -list_failures -log_verbose -clean -options dotnet=false -l $COMPILEALL_DIR
group: stable
os: linux