d283f95505
Signed-off-by: Peter Jones <pjones@redhat.com>
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Wed, 11 Apr 2018 16:49:36 -0400
|
|
Subject: [PATCH] Add .travis.yml
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
.travis.yml | 17 +++++++++++++++++
|
|
1 file changed, 17 insertions(+)
|
|
create mode 100644 .travis.yml
|
|
|
|
diff --git a/.travis.yml b/.travis.yml
|
|
new file mode 100644
|
|
index 00000000000..a2cad354b1a
|
|
--- /dev/null
|
|
+++ b/.travis.yml
|
|
@@ -0,0 +1,17 @@
|
|
+language: c
|
|
+cache: ccache
|
|
+branches:
|
|
+ except:
|
|
+ - travis
|
|
+
|
|
+matrix:
|
|
+ include:
|
|
+ - os: linux
|
|
+ dist: trusty
|
|
+ services: docker
|
|
+
|
|
+before_install:
|
|
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker pull vathpela/efi-ci-rawhide:v0 ; fi
|
|
+
|
|
+script:
|
|
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker run vathpela/efi-ci-rawhide:v0 /bin/sh -c "cd /root/ && ./build.sh --branch \"$TRAVIS_BRANCH\" --commit \"$TRAVIS_COMMIT\" --commit-range \"$TRAVIS_COMMIT_RANGE\" --event-type \"$TRAVIS_EVENT_TYPE\" --pull-request \"$TRAVIS_PULL_REQUEST\" --pr-branch \"$TRAVIS_PULL_REQUEST_BRANCH\" --pr-sha \"$TRAVIS_PULL_REQUEST_SHA\" --remote \"$TRAVIS_PULL_REQUEST_SLUG\" --repo \"$TRAVIS_REPO_SLUG\" --test-subject fwupdate" ; fi
|