From 5da7a4caf34346014fbd496187ed8ee8e4915b1d Mon Sep 17 00:00:00 2001 From: Federico Igne Date: Thu, 21 Oct 2021 12:02:40 +0100 Subject: Setup tests for both master and develop We are avoiding slow tests for now since they seem to run out of RAM. Also note that in the GitHub Actions we used a trick to expose the `$HOME` env variable, as described here: https://web.archive.org/web/20211021130639/https://brandur.org/fragments/github-actions-env-vars-in-env-vars A nice badge in the README will also tell the outcome of the process. --- rdfox_setup.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 rdfox_setup.sh (limited to 'rdfox_setup.sh') diff --git a/rdfox_setup.sh b/rdfox_setup.sh new file mode 100755 index 0000000..2091088 --- /dev/null +++ b/rdfox_setup.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +VERSION="5.2.1" +NAME="RDFox-linux-x86_64-$VERSION" +LINK="https://rdfox-distribution.s3.eu-west-2.amazonaws.com/release/v$VERSION/$NAME.zip" +DEST="lib" + +mkdir -p "$DEST" +cd "$DEST" +wget "$LINK" +unzip "$NAME.zip" +ln -s "$NAME/lib/JRDFox.jar" +cd - -- cgit v1.2.3