summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: cb1e6078802f5434376a8741714970a244c64c53 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
os: linux
dist: bionic

language: cpp

compiler:
- gcc

cache:
  directories:
  - /var/cache/apt/archives/*.deb
  - Toolchain/Cache/

notifications:
  irc:
    channels:
      - "chat.freenode.net#serenityos"
    template:
      - "%{repository_slug}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
      - "Subject: %{commit_subject}"
      - "Details: %{build_url}"

before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -y g++-8 libstdc++-8-dev shellcheck libmpfr-dev libmpc-dev libgmp-dev e2fsprogs qemu-system-i386 qemu-utils
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 90
- sudo python2 -m pip install cmake
- export PATH=/usr/local/bin/:$PATH
- cmake --version

script:
- export SERENITY_ROOT=$(pwd)
- Meta/lint-shell-scripts.sh
- Meta/check-license-headers.sh
- cd Toolchain
- TRY_USE_LOCAL_TOOLCHAIN=y ./BuildIt.sh
- cd "$SERENITY_ROOT"
- mkdir -p Build
- cd Build
- cmake .. -DBUILD_LAGOM=1
- make
- make test
- cd "$SERENITY_ROOT"/Libraries/LibJS/Tests
- ./run-tests.sh
- cd "$SERENITY_ROOT"/Toolchain/Cache
- du -ch * || true