From cc2a49c15936504c40ccf05c04a022fb9d2638e2 Mon Sep 17 00:00:00 2001 From: Patrik Wenger Date: Fri, 8 Jan 2021 19:18:45 +0100 Subject: [PATCH] remove obsolete CI scripts --- ci-scripts/install-libczmq | 38 -------------------------------------- ci-scripts/install-libzmq | 28 ---------------------------- 2 files changed, 66 deletions(-) delete mode 100755 ci-scripts/install-libczmq delete mode 100755 ci-scripts/install-libzmq diff --git a/ci-scripts/install-libczmq b/ci-scripts/install-libczmq deleted file mode 100755 index 70e9c86..0000000 --- a/ci-scripts/install-libczmq +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -x -# vim: ft=sh -set -e - -git submodule update --init -- vendor/czmq -cd vendor/czmq - -case "$CZMQ_VERSION" in -"") - echo "Using commit recorded in git submodule" - ;; -HEAD) - echo "Using latest commit (HEAD) and compiling with --enable-drafts ..." - git pull origin master - CONFIGURE_OPTS="--enable-drafts=yes" - ;; -stable) - echo "Using latest stable release ..." - tag=`git tag | grep ^v | grep -v -- -rc | sort --field-separator=. --key=1,3 --numeric-sort | tail -1` - echo "Using tag: $tag" - git pull origin master - git checkout $tag - CONFIGURE_OPTS="--enable-drafts=no" - ;; -*) - echo '$CZMQ_VERSION not set.' - exit 1 -esac - -./autogen.sh -./configure --prefix=$HOME $CONFIGURE_OPTS -make -j2 -make install - -# Restore the generated Ruby binding of commit recorded in git submodule vendor/czmq. -git checkout master -cd ../.. -git submodule update --force -- vendor/czmq diff --git a/ci-scripts/install-libzmq b/ci-scripts/install-libzmq deleted file mode 100755 index 3ccb80c..0000000 --- a/ci-scripts/install-libzmq +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -x -# vim: ft=sh -set -e -mkdir -p ~/src -cd ~/src - -case "$ZMQ_VERSION" in -HEAD|"") - echo "Using latest commit (HEAD) and compiling with --enable-drafts ..." - git clone https://github.com/zeromq/libzmq libzmq - CONFIGURE_OPTS="--enable-drafts=yes" - ;; -stable) - echo "Using latest stable release on $ZMQ_VERSION fork ..." - git clone https://github.com/zeromq/libzmq libzmq - tag=`GIT_DIR=libzmq/.git git tag | grep ^v | grep -v -- -rc | sort --field-separator=. --key=1,3 --numeric-sort | tail -1` - CONFIGURE_OPTS="--enable-drafts=no" - ;; -*) - echo '$CZMQ_VERSION not set.' - exit 1 -esac - -cd libzmq -./autogen.sh -./configure --prefix=$HOME $CONFIGURE_OPTS -make -j2 -make install