Test rlgl
authorAnthony Green <green@moxielogic.com>
Tue, 12 Nov 2019 02:11:59 +0000 (21:11 -0500)
committerAnthony Green <green@moxielogic.com>
Tue, 12 Nov 2019 02:11:59 +0000 (21:11 -0500)
.travis/build-in-container.sh
.travis/build.sh
.travis/install.sh

index bc027648ef030a1c9ab099868f0af040648c0d4b..02b1e56d4fc00904aca9de2f64067d8e78f164f6 100755 (executable)
@@ -14,7 +14,7 @@ export QEMU_LD_PREFIX=/usr/${HOST}
 make
 make dist
 make check RUNTESTFLAGS="-a $RUNTESTFLAGS"
-EXITCODE=$?
+
 gzip -c -9 */testsuite/libffi.log > libffi.log.gz
 echo ================================================================
 echo The logs are too long for travis to handle, so we compress and
@@ -24,5 +24,8 @@ echo ================================================================
 uuencode libffi.log.gz -
 echo ================================================================
 echo ================================================================
-exit $EXITCODE
+
+ID=$(./rlgl start)
+./rlgl e --id=$ID --policy=https://github.com/libffi/rlgl-policy.git */testsuite/libffi.log
+exit $?
 
index 92e808c2f3fec65febd9461d6c094b5202f31d82..0ff1bc23172c1eb955b92d8f6879761b25000087 100755 (executable)
@@ -31,7 +31,6 @@ function build_linux()
     make
     make dist
     make check RUNTESTFLAGS="-a $RUNTESTFLAGS"
-    EXITCODE=$?
 
     gzip -c -9 */testsuite/libffi.log > libffi.log.gz
     echo ================================================================
@@ -44,7 +43,9 @@ function build_linux()
     echo ================================================================
     echo ================================================================
 
-    exit $EXITCODE
+    ID=$(./rlgl start)
+    ./rlgl e --id=$ID --policy=https://github.com/libffi/rlgl-policy.git */testsuite/libffi.log
+    exit $?
 }
 
 function build_foreign_linux()
index 751d1523ae43bb5c926907eeb8a246d5d3803e1d..e6a186517e4fe42e388e09d5d4e9e5eeb1f45d3a 100755 (executable)
@@ -2,42 +2,53 @@
 set -x
 
 if [[ $TRAVIS_OS_NAME != 'linux' ]]; then
-  brew update > brew-update.log 2>&1
-  # fix an issue with libtool on travis by reinstalling it
-  brew uninstall libtool;
-  brew install libtool dejagnu;
+    brew update > brew-update.log 2>&1
+    # fix an issue with libtool on travis by reinstalling it
+    brew uninstall libtool;
+    brew install libtool dejagnu;
 else
-  sudo apt-get clean # clear the cache
-  sudo apt-get update
-  case $HOST in
-      aarch64-linux-gnu | powerpc64le-unknown-linux-gnu | mips64el-linux-gnu | sparc64-linux-gnu)
-          ;;     
-      alpha-linux-gnu | arm32v7-linux-gnu | m68k-linux-gnu | sh4-linux-gnu | s390x-linux-gnu )
-         sudo apt-get install qemu-user-static
-         ;;
-      hppa-linux-gnu )
-         sudo apt-get install -y qemu-user-static g++-5-hppa-linux-gnu
-         ;;
-      i386-pc-linux-gnu)
-         sudo apt-get install gcc-multilib g++-multilib;
-         ;;
-      moxie-elf)
-         echo 'deb https://repos.moxielogic.org:7114/MoxieLogic moxiedev main' | sudo tee -a /etc/apt/sources.list
-         sudo apt-get clean # clear the cache
-         sudo apt-get update ## -qq
-         sudo apt-get update
-         sudo apt-get install -y --allow-unauthenticated moxielogic-moxie-elf-gcc moxielogic-moxie-elf-gcc-c++ moxielogic-moxie-elf-gcc-libstdc++ moxielogic-moxie-elf-gdb-sim
-         ;;
-      i686-w64-mingw32)
-         sudo apt-get install gcc-mingw-w64-i686 binutils-mingw-w64-i686 wine;
-         ;;
-  esac
-  case $HOST in
-      arm32v7-linux-gnu | aarch64-linux-gnu | ppc64le-linux-gnu | s390x-linux-gnu)
-          # don't install host tools
-          ;;
-      *)
-         sudo apt-get install dejagnu texinfo sharutils
-         ;;
-  esac
+
+    # Configure the rlgl cli.
+    # Download and extract the client
+    wget -qO - http://rl.gl/cli/rlgl-linux-amd64.tgz | \
+       tar --strip-components=2 -xvzf - ./rlgl/rlgl
+    # Log into the server
+    ./rlgl login https://rl.gl
+
+    sudo apt-get clean # clear the cache
+    sudo apt-get update
+    case $HOST in
+       aarch64-linux-gnu | powerpc64le-unknown-linux-gnu | mips64el-linux-gnu | sparc64-linux-gnu)
+        ;;       
+       alpha-linux-gnu | arm32v7-linux-gnu | m68k-linux-gnu | sh4-linux-gnu | s390x-linux-gnu )
+           sudo apt-get install qemu-user-static
+           ;;
+       hppa-linux-gnu )
+           sudo apt-get install -y qemu-user-static g++-5-hppa-linux-gnu
+           ;;
+       i386-pc-linux-gnu)
+           sudo apt-get install gcc-multilib g++-multilib;
+           ;;
+       moxie-elf)
+           echo 'deb https://repos.moxielogic.org:7114/MoxieLogic moxiedev main' | sudo tee -a /etc/apt/sources.list
+           sudo apt-get clean # clear the cache
+           sudo apt-get update ## -qq
+           sudo apt-get update
+           sudo apt-get install -y --allow-unauthenticated moxielogic-moxie-elf-gcc moxielogic-moxie-elf-gcc-c++ moxielogic-moxie-elf-gcc-libstdc++ moxielogic-moxie-elf-gdb-sim
+           ;;
+       x86_64-w64-mingw32)
+           sudo apt-get install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 wine;
+           ;;
+       i686-w32-mingw32)
+           sudo apt-get install gcc-mingw-w64-i686 g++-mingw-w64-i686 wine;
+           ;;
+    esac
+    case $HOST in
+       arm32v7-linux-gnu | aarch64-linux-gnu | ppc64le-linux-gnu | s390x-linux-gnu)
+        # don't install host tools
+        ;;
+       *)
+           sudo apt-get install dejagnu texinfo sharutils
+           ;;
+    esac
 fi