diff --git a/ci/autopkg_debian.sh b/ci/autopkg_debian.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a46c1401e0c289ef036a5efb15f20884dd566a7 --- /dev/null +++ b/ci/autopkg_debian.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env sh +set -e + +PACKAGES_DIR=$1 + +shift + +TEMP_DIR=$(mktemp -d /tmp/devflow_autopkg_XXXXXXX) + +# Create the packages +devflow-autopkg snapshot -b $TEMP_DIR $@ + +# MOVE the packages +mkdir -p $PACKAGES_DIR +mv -n $TEMP_DIR/* $PACKAGES_DIR + +echo "Moved packages to: $(pwd)/$PACKAGES_DIR" + diff --git a/ci/make_docs.sh b/ci/make_docs.sh new file mode 100755 index 0000000000000000000000000000000000000000..61a53d990e41bdcf932b6b341adf442435556fdd --- /dev/null +++ b/ci/make_docs.sh @@ -0,0 +1,13 @@ +#!/bin/sh +set -e + +DOCS_DIR=$1 + +cd docs +make html +cd - + +mkdir -p $DOCS_DIR +mv -n docs/_build/html/* $DOCS_DIR + +echo "Moved docs to to: $(pwd)/$DOCS_DIR" diff --git a/ci/pep8.sh b/ci/pep8.sh new file mode 100755 index 0000000000000000000000000000000000000000..e9786a70ca056edb571d567be416b24d7e09fdab --- /dev/null +++ b/ci/pep8.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +pep8 image_creator + diff --git a/ci/pylint.sh b/ci/pylint.sh new file mode 100755 index 0000000000000000000000000000000000000000..a200be125452fb975ae4ad9576a31d295d43e896 --- /dev/null +++ b/ci/pylint.sh @@ -0,0 +1,3 @@ +!/bin/sh + +pylint image_creator