Skip to content

Commit 4fbe204

Browse files
Added .travis.yml (#1)
* Added .travis.yml * Added build/ * [travis] Move 'make' from install to script
1 parent 2832df1 commit 4fbe204

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: c
2+
3+
compiler:
4+
- clang
5+
- gcc
6+
7+
addons:
8+
apt:
9+
update: true
10+
11+
before_install:
12+
- sudo apt-get -y install nasm
13+
14+
script: make

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ $(bt_stage1): $(BL_SRC_DIR)/stage1.asm $(BL_SRC_DIR)/constants.asm $(BL_SRC_DIR)
2020
nasm -o $@ -f bin -i $(BL_SRC_DIR)/ $<
2121

2222
clean:
23-
rm $(BUILD_DIR)/*
23+
rm -f $(image_vmdk) $(bt_stage1)

build/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Default build directory

0 commit comments

Comments
 (0)