1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 12:00:49 +00:00

Add .travis.yml

This commit is contained in:
Robin Burchell 2019-05-28 14:47:24 +02:00 committed by Andreas Kling
parent 246dd93fe9
commit a942fa2ed3
2 changed files with 28 additions and 0 deletions

26
.travis.yml Normal file
View File

@ -0,0 +1,26 @@
sudo: require
dist: xenial
language: cpp
compiler:
- gcc
cache:
directories:
- /var/cache/apt/archives/*.deb
notifications:
irc: "chat.freenode.net#serenityos"
before_install:
- sudo apt-get update
- sudo apt-get install -y libmpfr-dev libmpc-dev libgmp-dev
- sudo apt-get install -y e2fsprogs qemu-system-i386
script:
- cd Toolchain
- ./BuildIt.sh
- source ./UseIt.sh
- cd ../Kernel
- ./makeall.sh

View File

@ -2,6 +2,8 @@
Graphical Unix-like operating system for x86 computers.
![Travis CI status](https://travis-ci.org/SerenityOS/serenity.svg?branch=master)
## About
*I always wondered what it would be like to write my own operating system, but I never took it seriously. Until now.*