From 7d766aea038fcb6e4a81490752ab7829c5fd6c4a Mon Sep 17 00:00:00 2001 From: g012 Date: Thu, 28 Sep 2017 22:55:31 +0200 Subject: [PATCH] Trying out travis-ci. --- .travis.yml | 10 ++++++++++ README.md | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8deb0ac --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: c +os: + - linux + - osx +compiler: + - clang + - gcc +script: + - cmake . -DCMAKE_BUILD_TYPE=Release + - make diff --git a/README.md b/README.md index 33c9d10..aa154ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # l65 -l65 is a 6502 assembler, operating from within Lua and written in Lua. This means assembler mnemonics become regular Lua statements anywhere in the moddle of regular Lua code. +l65 is a 6502 assembler, operating from within Lua and written in Lua. This means assembler mnemonics become regular Lua statements anywhere in the middle of Lua code. ## Building