Skip to content

Commit 427557e

Browse files
committedMar 13, 2020
wip: remove release tag. use more recent docker.
License: MIT Signed-off-by: Oli Evans <oli@tableflip.io>
1 parent 9f6349b commit 427557e

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed
 

‎.circleci/config.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,8 @@ jobs:
310310
executor: dockerizer
311311
steps:
312312
- checkout
313-
- setup_remote_docker
313+
- setup_remote_docker:
314+
version: "18.09.3"
314315
- run:
315316
name: Build Docker image
316317
command: |
@@ -326,7 +327,8 @@ jobs:
326327
executor: dockerizer
327328
steps:
328329
- checkout
329-
- setup_remote_docker
330+
- setup_remote_docker:
331+
version: "18.09.3"
330332
- attach_workspace:
331333
at: /tmp/workspace
332334
- run:
@@ -374,12 +376,11 @@ workflows:
374376
- interop
375377
- go-ipfs-api
376378
- go-ipfs-http-client
377-
- ipfs-webui
379+
- ipfs-webui
378380
filters:
379381
branches:
380-
only:
382+
only:
381383
- master
382-
- release
383384
- feat/stabilize-dht
384385

385386
# NOTE: CircleCI only builds tags if you explicitly filter for them. That

‎bin/push-docker-tags.sh

+5-8
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,17 @@ pushTag () {
5959
fi
6060
}
6161

62-
if [[ $GIT_TAG =~ ^v[0-9]+ ]]; then
62+
if [[ $GIT_TAG =~ ^v[0-9]+ ]]; then
6363
pushTag "$GIT_TAG"
64+
pushTag "latest"
6465

65-
elif [ "$GIT_BRANCH" = "feat/stabilize-dht" ]; then
66+
elif [ "$GIT_BRANCH" = "feat/stabilize-dht" ]; then
6667
pushTag "bifrost-${BUILD_NUM}-${GIT_SHA1_SHORT}"
6768
pushTag "bifrost-latest"
6869

69-
elif [ "$GIT_BRANCH" = "release" ]; then
70-
pushTag "release"
71-
pushTag "latest"
72-
73-
elif [ "$GIT_BRANCH" = "master" ]; then
70+
elif [ "$GIT_BRANCH" = "master" ]; then
7471
pushTag "master-${BUILD_NUM}-${GIT_SHA1_SHORT}"
75-
pushTag "master"
72+
pushTag "master-latest"
7673

7774
else
7875
echo "Nothing to do. No docker tag defined for branch: $GIT_BRANCH, tag: $GIT_TAG"

0 commit comments

Comments
 (0)