Commit 9d818673 authored by Yuanle Song's avatar Yuanle Song
Browse files

v1.5.3 make utils/trigger-ci-build a noop.

previously it was trying to call jenkins api, which I haven't used for
years. replaced it with an empty shell script with some comments.
parent 06e2f49c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
(defproject python/lein-template "1.5.2"
(defproject python/lein-template "1.5.3"
  :description "lein template for a python project"
  :url "https://blog.emacsos.com/python-project-template"
  :license {:name "Eclipse Public License"
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@
                        "utils/versionutils.py"
                        "utils/build-deb"
                        "utils/install-git-hooks"
                        "utils/trigger-jenkins-build"
                        "utils/trigger-ci-build"
                        "deb-scripts/before-install.sh"
                        "deb-scripts/after-install.sh"
                        "deb-scripts/before-remove.sh"
+8 −0
Original line number Diff line number Diff line
@@ -84,3 +84,11 @@ How to run tests and deploy projects
  other environment, the app.yaml template should be updated to fit in the
  environment.

How to add git commit hooks etc
---------------------------------

Using git pre-commit hook is a good idea.

.. code-block:: bash

   make install-git-hooks
+1 −1
Original line number Diff line number Diff line
#!/bin/sh

./utils/trigger-jenkins-build
./utils/trigger-ci-build
+1 −1
Original line number Diff line number Diff line
#!/bin/sh

./utils/trigger-jenkins-build
./utils/trigger-ci-build
Loading