From e32176b9e76394297104aafed9a02ab80d748172 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Mon, 23 Oct 2017 15:44:22 -0400 Subject: [PATCH] travis: add linux x64 build script --- travis/build-linux_x64.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 travis/build-linux_x64.sh diff --git a/travis/build-linux_x64.sh b/travis/build-linux_x64.sh new file mode 100755 index 00000000..9d84faec --- /dev/null +++ b/travis/build-linux_x64.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +RECIPE=recipes/linux/cores-linux-x64-generic + +cd ~/libretro-super + +# only build the one core specified in $CORE +egrep "^$CORE " ${RECIPE} | head -1 >${RECIPE}.new && mv ${RECIPE}.new ${RECIPE} + +./libretro-buildbot-recipe.sh ${RECIPE}