diff mbox series

Add travis yaml file to automate builds on github

Message ID 20180625112718.4578-1-colin.king@canonical.com
State Accepted
Headers show
Series Add travis yaml file to automate builds on github | expand

Commit Message

Colin Ian King June 25, 2018, 11:27 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

This adds a travis YAML file the automates builds when I sync fwts to
github allowing fast sanity build checks.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 .travis.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 .travis.yml

Comments

Alex Hung June 27, 2018, 10:35 p.m. UTC | #1
On 2018-06-25 04:27 AM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> This adds a travis YAML file the automates builds when I sync fwts to
> github allowing fast sanity build checks.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>   .travis.yml | 11 +++++++++++
>   1 file changed, 11 insertions(+)
>   create mode 100644 .travis.yml
> 
> diff --git a/.travis.yml b/.travis.yml
> new file mode 100644
> index 00000000..46d4c4ea
> --- /dev/null
> +++ b/.travis.yml
> @@ -0,0 +1,11 @@
> +dist: trusty
> +sudo: required
> +
> +before_install:
> +    - sudo apt-get update -q
> +    - sudo apt-get install build-essential autoconf automake libtool libjson-c-dev flex bison dkms libglib2.0-dev libfdt-dev
> +
> +language: c
> +
> +script:
> +- autoreconf -ivf; ./configure; make
> 


Acked-by: Alex Hung <alex.hung@canonical.com>
Ivan Hu July 3, 2018, 9:25 a.m. UTC | #2
On 06/25/2018 07:27 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> This adds a travis YAML file the automates builds when I sync fwts to
> github allowing fast sanity build checks.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  .travis.yml | 11 +++++++++++
>  1 file changed, 11 insertions(+)
>  create mode 100644 .travis.yml
>
> diff --git a/.travis.yml b/.travis.yml
> new file mode 100644
> index 00000000..46d4c4ea
> --- /dev/null
> +++ b/.travis.yml
> @@ -0,0 +1,11 @@
> +dist: trusty
> +sudo: required
> +
> +before_install:
> +    - sudo apt-get update -q
> +    - sudo apt-get install build-essential autoconf automake libtool libjson-c-dev flex bison dkms libglib2.0-dev libfdt-dev
> +
> +language: c
> +
> +script:
> +- autoreconf -ivf; ./configure; make

Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff mbox series

Patch

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..46d4c4ea
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,11 @@ 
+dist: trusty
+sudo: required
+
+before_install:
+    - sudo apt-get update -q
+    - sudo apt-get install build-essential autoconf automake libtool libjson-c-dev flex bison dkms libglib2.0-dev libfdt-dev
+
+language: c
+
+script:
+- autoreconf -ivf; ./configure; make