File tree 2 files changed +11
-13
lines changed
2 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,8 @@ jobs:
310
310
executor : dockerizer
311
311
steps :
312
312
- checkout
313
- - setup_remote_docker
313
+ - setup_remote_docker :
314
+ version : " 18.09.3"
314
315
- run :
315
316
name : Build Docker image
316
317
command : |
@@ -326,7 +327,8 @@ jobs:
326
327
executor : dockerizer
327
328
steps :
328
329
- checkout
329
- - setup_remote_docker
330
+ - setup_remote_docker :
331
+ version : " 18.09.3"
330
332
- attach_workspace :
331
333
at : /tmp/workspace
332
334
- run :
@@ -374,12 +376,11 @@ workflows:
374
376
- interop
375
377
- go-ipfs-api
376
378
- go-ipfs-http-client
377
- - ipfs-webui
379
+ - ipfs-webui
378
380
filters :
379
381
branches :
380
- only :
382
+ only :
381
383
- master
382
- - release
383
384
- feat/stabilize-dht
384
385
385
386
# NOTE: CircleCI only builds tags if you explicitly filter for them. That
Original file line number Diff line number Diff line change @@ -59,20 +59,17 @@ pushTag () {
59
59
fi
60
60
}
61
61
62
- if [[ $GIT_TAG =~ ^v[0-9]+ ]]; then
62
+ if [[ $GIT_TAG =~ ^v[0-9]+ ]]; then
63
63
pushTag " $GIT_TAG "
64
+ pushTag " latest"
64
65
65
- elif [ " $GIT_BRANCH " = " feat/stabilize-dht" ]; then
66
+ elif [ " $GIT_BRANCH " = " feat/stabilize-dht" ]; then
66
67
pushTag " bifrost-${BUILD_NUM} -${GIT_SHA1_SHORT} "
67
68
pushTag " bifrost-latest"
68
69
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
74
71
pushTag " master-${BUILD_NUM} -${GIT_SHA1_SHORT} "
75
- pushTag " master"
72
+ pushTag " master-latest "
76
73
77
74
else
78
75
echo " Nothing to do. No docker tag defined for branch: $GIT_BRANCH , tag: $GIT_TAG "
You can’t perform that action at this time.
0 commit comments