aboutsummaryrefslogtreecommitdiff
path: root/Taskfile.yml
blob: f4fafa024802da44656b57f5e29650d557059b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: '3'

tasks:
  web:
    desc: Build the binary and start the web server.
    deps: [build]
    cmds:
      - ./gogs web
    sources:
      - gogs.go
      - internal/**/*.go

  build:
    desc: Build the binary.
    cmds:
      - go build -v
        -ldflags '
          -X "{{.PKG_PATH}}.BuildTime={{.BUILD_TIME}}"
          -X "{{.PKG_PATH}}.BuildCommit={{.BUILD_COMMIT}}"
        '
        -tags '{{.TAGS}}'
        -trimpath -o gogs
    vars:
      PKG_PATH: gogs.io/gogs/internal/conf
      BUILD_TIME:
        sh: date -u '+%Y-%m-%d %I:%M:%S %Z'
      BUILD_COMMIT:
        sh: git rev-parse HEAD

  generate:
    desc: Generate bindata for all assets.
    deps: [clean]
    cmds:
      - go generate internal/assets/conf/conf.go
      - go generate internal/assets/templates/templates.go
      - go generate internal/assets/public/public.go

  test:
    desc: Run all tests.
    cmds:
      - go test -cover -race ./...

  clean:
    desc: Cleans up system meta files for code generation.
    cmds:
      - find . -name "*.DS_Store" -type f -delete

  release:
    desc: Build the binary and pack resources to a ZIP file.
    deps: [build]
    cmds:
      - rm -rf {{.RELEASE_GOGS}}
      - mkdir -p {{.RELEASE_GOGS}}
      - cp -r gogs LICENSE README.md README_ZH.md scripts {{.RELEASE_GOGS}}
      - cd {{.RELEASE_ROOT}} && zip -r gogs.$(NOW).zip "gogs"
    vars:
      RELEASE_ROOT: release
      RELEASE_GOGS: release/gogs

  less:
    desc: Generate CSS from LESS files.
    cmds:
      - lessc --clean-css --source-map "public/less/gogs.less" public/css/gogs.min.css

  fixme:
    desc: Show all occurrences of "FIXME".
    cmds:
      - grep -rnw "FIXME" internal

  todo:
    desc: Show all occurrences of "TODO".
    cmds:
      - grep -rnw "TODO" internal

  legacy:
    desc: Identify legacy and deprecated lines.
    cmds:
      - grep -rnw "\(LEGACY\|Deprecated\)" internal