mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Add .travis.yml
This commit is contained in:
parent
246dd93fe9
commit
a942fa2ed3
Notes:
sideshowbarker
2024-07-19 13:52:12 +09:00
Author: https://github.com/rburchell Commit: https://github.com/SerenityOS/serenity/commit/a942fa2ed3b Pull-request: https://github.com/SerenityOS/serenity/pull/133 Reviewed-by: https://github.com/awesomekling ✅
2 changed files with 28 additions and 0 deletions
26
.travis.yml
Normal file
26
.travis.yml
Normal 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
|
|
@ -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.*
|
||||
|
|
Loading…
Reference in a new issue