File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 13
13
- run : make build
14
14
- run :
15
15
command : |
16
- if [[ -n "$CIRCLE_TAG" ]]; then
17
- export VERSION="$CIRCLE_TAG"
18
- fi
16
+ if [ "${CIRCLE_BRANCH}" == "release" ]; then
19
17
make release
18
+ fi
Original file line number Diff line number Diff line change
1
+ # I am a comment and that is OK
2
+ SOME_VAR = someval
3
+ FOO = BAR # comments at line end are OK too
4
+ export BAR = BAZ
Original file line number Diff line number Diff line change 30
30
docker-image :
31
31
docker build -q -f Dockerfile.build -t $(IMAGE_NAME ) :$(BUILD_TAG ) .
32
32
33
- ifdef CIRCLE_TAG
34
- release : make-release
35
- else
36
- release :
37
- @echo " No release necessary"
38
- endif
39
-
40
-
41
- make-release : build
33
+ release : build
42
34
rm -rf release && mkdir release
43
35
tar -zcf release/$(NAME ) _$(VERSION ) _linux_$(HARDWARE ) .tgz -C build/linux $(NAME )
44
36
tar -zcf release/$(NAME ) _$(VERSION ) _darwin_$(HARDWARE ) .tgz -C build/darwin $(NAME )
Original file line number Diff line number Diff line change
1
+ <<<<<<< HEAD=0
2
+ web : python -p $PORT server
3
+ ======
4
+ worker : python work.py --derp $PS
5
+ >>>>>>> 5bb7ec3e2a8f4f6565432a4fc82c92d4a3603d28=0
You can’t perform that action at this time.
0 commit comments