Skip to content

Commit 00c7561

Browse files
authored
Fix: circleci duplicate key path (#115)
* Remove nightly workflow * Avoid restoring cache
1 parent c0afe69 commit 00c7561

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.circleci/config.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ general:
44

55
do_steps: &do_steps
66
steps:
7-
- restore_cache:
8-
key: code-tree-shallow
9-
- restore_cache:
10-
key: bake-tree-cache
117
- run:
128
name: checkout build tree
139
command: |
@@ -31,7 +27,7 @@ do_steps: &do_steps
3127
if [ -z "${BAKE_MOD_VERSION}" ] ; then export BAKE_MOD_VERSION="dev" ; fi
3228
3329
# we clone a fork of bake
34-
cd "$HOME" && git clone -b ${BAKE_BRANCH} git://github.com/nsnam/bake-git ./bake
30+
cd "$HOME" && git clone -b ${BAKE_BRANCH} https://gitlab.com/nsnam/bake.git ./bake
3531
3632
# setup environment
3733
OS=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
@@ -42,8 +38,8 @@ do_steps: &do_steps
4238
fi
4339
4440
sudo pip install distro requests; sudo pip3 install distro requests
45-
46-
cd "$HOME" && ./bake/bake.py configure -e dce-umip-${BAKE_MOD_VERSION} -e dce-linux-${BAKE_MOD_VERSION}
41+
42+
cd "$HOME" && ./bake/bake.py configure -e dce-linux-${BAKE_MOD_VERSION}
4743
cd "$HOME" && ./bake/bake.py download -vvv
4844
4945
- save_cache:
@@ -105,13 +101,3 @@ workflows:
105101
build:
106102
jobs:
107103
- ubuntu16.04
108-
nightly_workflow:
109-
triggers:
110-
- schedule:
111-
cron: "0 1 * * *" # run at 1am UTC
112-
filters:
113-
branches:
114-
only:
115-
- fix-valgrind-test
116-
jobs:
117-
- ubuntu14.04_valgrind

0 commit comments

Comments
 (0)