forked from vitthal-inani/SOAD_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (32 loc) · 958 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
34
matrix:
include:
- language: python
python: 3.7
before_script:
- cd ./Backend/PackUrBags/
install:
- pip install -r ./Backend/PackUrBags/requirements.txt
script:
- pytest
- language: dart
os:
- linux
sudo: false
addons:
apt:
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
sources:
- ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
packages:
- libstdc++6
- fonts-droid-fallback
before_script:
- cd ./Frontend/
- git clone https://github.com/flutter/flutter.git -b master
- ./flutter/bin/flutter config --enable-web
- ./flutter/bin/flutter doctor
script:
- ./flutter/bin/flutter build web
cache:
directories:
- $HOME/.pub-cache