blob: d4a21f86420175ef0cf63a01caf08590a582d3c6 (
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
|
sudo: require
dist: xenial
language: cpp
compiler:
- gcc
cache:
directories:
- /var/cache/apt/archives/*.deb
notifications:
irc: "chat.freenode.net#serenityos"
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install g++-8 libstdc++-8-dev
- 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 apt-get install -y libmpfr-dev libmpc-dev libgmp-dev
- sudo apt-get install -y e2fsprogs qemu-system-i386 qemu-utils
script:
- cd Toolchain
- ./BuildIt.sh
- source ./UseIt.sh
- cd ../Kernel
- ./makeall.sh
|