From 6e289a549d22920f207ab6b1e3886c0f39cb7a77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 5 Jun 2014 13:02:10 +0200 Subject: [PATCH 1/3] deploy on all branches again --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 26dadaf8f9..03e41dbfcf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,6 +51,6 @@ deploy: - build/openra_$DOTVERSION_all.deb skip_cleanup: true on: - all_branches: false + all_branches: true tags: true repo: OpenRA/OpenRA From 354353814e62c28efd1c9ea7a32e9e1a5794dcfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 5 Jun 2014 13:18:07 +0200 Subject: [PATCH 2/3] fix RPM filename --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 03e41dbfcf..03efe5bc62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ deploy: file: - build/OpenRA-$TRAVIS_TAG.exe - build/OpenRA-$TRAVIS_TAG.zip - - build/openra-$DOTVERSION-1-noarch.rpm + - build/openra-$DOTVERSION-1.noarch.rpm - build/openra_$DOTVERSION_all.deb skip_cleanup: true on: From 76da94607560b858a955193fdab6319e1e59da60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 5 Jun 2014 13:21:25 +0200 Subject: [PATCH 3/3] fix /home/travis/rpmbuild/SPECS/openra.spec: No such directory --- packaging/linux/rpm/buildpackage.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/linux/rpm/buildpackage.sh b/packaging/linux/rpm/buildpackage.sh index e11fbe49d8..8332eec45b 100755 --- a/packaging/linux/rpm/buildpackage.sh +++ b/packaging/linux/rpm/buildpackage.sh @@ -7,6 +7,7 @@ then fi mkdir ~/rpmbuild/ +mkdir ~/rpmbuild/SPECS # Replace any dashes in the version string with periods PKGVERSION=`echo $1 | sed "s/-/\\./g"`