You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2020/05/17 14:14:42 UTC

[celix] branch feature/etcdlib_ci created (now 4062a31)

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a change to branch feature/etcdlib_ci
in repository https://gitbox.apache.org/repos/asf/celix.git.


      at 4062a31  Adds gitflow to build etcdlib standalone weekly.

This branch includes the following new commits:

     new 4062a31  Adds gitflow to build etcdlib standalone weekly.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[celix] 01/01: Adds gitflow to build etcdlib standalone weekly.

Posted by pn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/etcdlib_ci
in repository https://gitbox.apache.org/repos/asf/celix.git

commit 4062a319243d4ee0aa51bcd9502291727b199548
Author: Pepijn Noltes <pe...@gmail.com>
AuthorDate: Sun May 17 16:14:20 2020 +0200

    Adds gitflow to build etcdlib standalone weekly.
    
    Also updated celix Promise to build weekly instead of nightly.
---
 .github/workflows/{celix_promise.yml => celix_etcdlib.yml} | 10 ++++++----
 .github/workflows/celix_promise.yml                        |  4 ++--
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/celix_promise.yml b/.github/workflows/celix_etcdlib.yml
similarity index 81%
copy from .github/workflows/celix_promise.yml
copy to .github/workflows/celix_etcdlib.yml
index be8b353..c7b8dc1 100644
--- a/.github/workflows/celix_promise.yml
+++ b/.github/workflows/celix_etcdlib.yml
@@ -1,8 +1,8 @@
-name: Standalone Celix Promise Nightly
+name: Standalone Celix etcdlib Weekly
 
 on:
   schedule:
-    - cron:  '0 0 * * *'
+    - cron:  '0 0 * * 0'
 
 jobs:
   build:
@@ -22,7 +22,9 @@ jobs:
           sudo apt-get install -yq --no-install-recommends \
             build-essential \
             cmake \
-            libtbb-dev
+            curl \
+            libjansson-dev \
+            libcurl4-openssl-dev
       - name: Build
         env:
           CC: ${{ matrix.compiler }}
@@ -30,5 +32,5 @@ jobs:
         run: |
           mkdir build install
           cd build
-          cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../install ../misc/experimental/promise
+          cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../install ../libs/etcdlib
           make -j && make install
diff --git a/.github/workflows/celix_promise.yml b/.github/workflows/celix_promise.yml
index be8b353..4190a22 100644
--- a/.github/workflows/celix_promise.yml
+++ b/.github/workflows/celix_promise.yml
@@ -1,8 +1,8 @@
-name: Standalone Celix Promise Nightly
+name: Standalone Celix Promise Weekly
 
 on:
   schedule:
-    - cron:  '0 0 * * *'
+    - cron:  '0 0 * * 0'
 
 jobs:
   build: