Added travis support

This commit is contained in:
ice-bit 2019-09-27 00:47:53 +02:00
parent 8ff8d71af8
commit 1713cc87b0
2 changed files with 9 additions and 6 deletions

View File

@ -1,6 +0,0 @@
before_script:
- ln -s /usr/bin/gcc /usr/bin/i686-elf-gcc
- ln -s /usr/bin/ld /usr/bin/i686-elf-ld
test:
script:
- make clean all # Compile

9
.travis.yml Normal file
View File

@ -0,0 +1,9 @@
language: C
before_install:
- sudo apt-get update
- sudo apt-get install -y nasm grub-pc-bin
- alias i686-elf-gcc="gcc"
- alias i686-elf-ld="ld"
script: make clean all