Compare commits

..

6 Commits

Author SHA1 Message Date
08456aa576 Merge pull request 'small refactoring message cleaning' (#3) from small-refactor into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #3
2021-06-25 22:30:25 +03:00
12fce31ed8 small refactoring message cleaning
All checks were successful
continuous-integration/drone/pr Build is passing
2021-06-25 22:31:29 +03:00
456982e82c Merge pull request 'test' (#4) from feature_test_ci into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #4
2021-06-25 18:35:26 +03:00
4456ca69a2 test
All checks were successful
continuous-integration/drone/pr Build is passing
2021-06-25 18:32:36 +03:00
8a3614419a CI
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-25 18:29:11 +03:00
4c88f0268d CI fix
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-25 17:51:39 +03:00
2 changed files with 14 additions and 4 deletions

View File

@ -7,6 +7,14 @@ platform:
os: linux
arch: amd64
trigger:
branch:
- master
event:
include:
- push
- pull_request
steps:
- name: build
commands:
@ -16,12 +24,12 @@ steps:
commands:
- make install
when:
branch:
- master
event:
- push
- name: restart
commands:
- systemctl restart craft-bot
when:
branch:
- master
event:
- push

View File

@ -74,6 +74,8 @@ func main() {
runHttpServer(ctx, cfg.Http, &wg)
runSignalHandler(ctx, cancelFunc)
getLogger(ctx).Infof("Running")
wg.Wait()
}