Home

tmpl @main - refs - log -
-
https://git.jolheiser.com/tmpl.git
Template automation
tree log patch
Add CI (#6) Rename check to vet Signed-off-by: jolheiser <john.olheiser@gmail.com> Parallel compliance Signed-off-by: jolheiser <john.olheiser@gmail.com> Update lint and move back to arm64 for compliance Signed-off-by: jolheiser <john.olheiser@gmail.com> Releases and tags Signed-off-by: jolheiser <john.olheiser@gmail.com> Move checks to amd64 Signed-off-by: jolheiser <john.olheiser@gmail.com> Add CI Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/jolheiser/tmpl/pulls/6 Co-Authored-By: John Olheiser <john.olheiser@gmail.com> Co-Committed-By: John Olheiser <john.olheiser@gmail.com>
John Olheiser <john.olheiser@gmail.com>
4 years ago
2 changed files, 155 additions(+), 0 deletions(-)
.drone.ymlEarthfile
I .drone.yml
  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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a72e60644a43357d40f258edc8c540d9faf247cc
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,145 @@
+---
+kind: pipeline
+name: compliance
+
+platform:
+  os: linux
+  arch: arm64
+
+trigger:
+  event:
+    - pull_request
+
+steps:
+  - name: build
+    pull: always
+    image: golang:1.15
+    environment:
+      GOPROXY: https://goproxy.cn
+    commands:
+      - make test
+      - make build
+
+  - name: vet
+    pull: always
+    image: golang:1.15
+    environment:
+      GOPROXY: https://goproxy.cn
+    commands:
+      - make vet
+    depends_on:
+      - build
+
+  - name: lint
+    pull: always
+    image: golangci/golangci-lint:v1.32
+    commands:
+      - golangci-lint --timeout 5m run
+    depends_on:
+      - build
+
+---
+kind: pipeline
+name: release-main
+
+platform:
+  os: linux
+  arch: amd64
+
+trigger:
+  event:
+    - push
+  branch:
+    - main
+
+steps:
+  - name: build
+    pull: always
+    image: golang:1.15
+    environment:
+      GOPROXY: https://goproxy.cn
+      VERSION: ${DRONE_COMMIT}
+    commands:
+      - make build
+  - name: build-windows
+    pull: always
+    image: golang:1.15
+    environment:
+      GOPROXY: https://goproxy.cn
+      VERSION: ${DRONE_COMMIT}
+      GOOS: windows
+    commands:
+      - make build
+  - name: gitea-release
+    pull: always
+    image: jolheiser/drone-gitea-main:latest
+    environment:
+      GOPROXY: https://goproxy.cn
+    settings:
+      token:
+        from_secret: gitea_token
+      base: https://gitea.com
+      files:
+        - "tmpl"
+        - "tmpl.exe"
+    depends_on:
+      - build
+      - build-windows
+
+
+---
+kind: pipeline
+name: release-tag
+
+platform:
+  os: linux
+  arch: amd64
+
+trigger:
+  event:
+    - tag
+
+steps:
+  - name: build
+    pull: always
+    image: golang:1.15
+    environment:
+      GOPROXY: https://goproxy.cn
+      VERSION: ${DRONE_TAG}
+    commands:
+      - make build
+  - name: build-windows
+    pull: always
+    image: golang:1.15
+    environment:
+      GOPROXY: https://goproxy.cn
+      GOOS: windows
+      VERSION: ${DRONE_TAG}
+    commands:
+      - make build
+  - name: gitea-release
+    pull: always
+    image: jolheiser/drone-gitea-main:latest
+    environment:
+      GOPROXY: https://goproxy.cn
+    settings:
+      token:
+        from_secret: gitea_token
+      base: https://gitea.com
+      files:
+        - "tmpl"
+        - "tmpl.exe"
+    depends_on:
+      - build
+      - build-windows
+  - name: gitea-prune
+    pull: always
+    image: jolheiser/drone-gitea-prune
+    environment:
+      GOPROXY: https://goproxy.cn
+    settings:
+      token:
+        from_secret: gitea_token
+      base: https://gitea.com
+    depends_on:
+      - gitea-release
\ No newline at end of file
I Earthfile
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
diff --git a/Earthfile b/Earthfile
new file mode 100644
index 0000000000000000000000000000000000000000..dbe98be1778b02dcf2f6ef373d00194c422dd826
--- /dev/null
+++ b/Earthfile
@@ -0,0 +1,10 @@
+# To lint, install Earthly and run `earth +lint`
+# This ensures the usage of the same version of golangci-lint
+
+FROM golangci/golangci-lint:v1.32
+
+WORKDIR /tmpl
+
+lint:
+    COPY . .
+    RUN golangci-lint --timeout 5m run
\ No newline at end of file