summaryrefslogtreecommitdiff
path: root/travis_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis_build.sh')
-rw-r--r--travis_build.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/travis_build.sh b/travis_build.sh
new file mode 100644
index 000000000..d25958906
--- /dev/null
+++ b/travis_build.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+
+# Get premake
+wget https://github.com/shader-slang/slang-binaries/blob/master/premake/premake-5.0.0-alpha13/bin/linux-64/premake5?raw=true -O premake5
+chmod u+x premake5
+
+# Create the makefile
+./premake5 gmake --cc=${CC}
+
+# Build the configuration
+make config=${CONFIGURATION}_x64
+
+