@@ -12,6 +12,9 @@ trigger:
12
12
- push
13
13
- tag
14
14
- pull_request
15
+ paths :
16
+ exclude :
17
+ - docs/**
15
18
16
19
volumes :
17
20
- name : deps
@@ -112,7 +115,6 @@ steps:
112
115
image : golang:1.19 # this step is kept as the lowest version of golang that we support
113
116
pull : always
114
117
environment :
115
- GO111MODULE : on
116
118
GOPROXY : https://goproxy.io
117
119
commands :
118
120
- go build -o gitea_no_gcc # test if build succeeds without the sqlite tag
@@ -124,7 +126,6 @@ steps:
124
126
- name : build-backend-arm64
125
127
image : golang:1.20
126
128
environment :
127
- GO111MODULE : on
128
129
GOPROXY : https://goproxy.io
129
130
GOOS : linux
130
131
GOARCH : arm64
@@ -140,7 +141,6 @@ steps:
140
141
- name : build-backend-windows
141
142
image : golang:1.20
142
143
environment :
143
- GO111MODULE : on
144
144
GOPROXY : https://goproxy.io
145
145
GOOS : windows
146
146
GOARCH : amd64
@@ -155,7 +155,6 @@ steps:
155
155
- name : build-backend-386
156
156
image : golang:1.20
157
157
environment :
158
- GO111MODULE : on
159
158
GOPROXY : https://goproxy.io
160
159
GOOS : linux
161
160
GOARCH : 386
@@ -183,6 +182,9 @@ trigger:
183
182
- push
184
183
- tag
185
184
- pull_request
185
+ paths :
186
+ exclude :
187
+ - docs/**
186
188
187
189
volumes :
188
190
- name : deps
@@ -410,6 +412,9 @@ trigger:
410
412
- push
411
413
- tag
412
414
- pull_request
415
+ paths :
416
+ exclude :
417
+ - docs/**
413
418
414
419
volumes :
415
420
- name : deps
@@ -517,6 +522,9 @@ depends_on:
517
522
trigger :
518
523
event :
519
524
- pull_request
525
+ paths :
526
+ exclude :
527
+ - docs/**
520
528
521
529
volumes :
522
530
- name : deps
@@ -696,6 +704,9 @@ trigger:
696
704
- " release/*"
697
705
event :
698
706
- push
707
+ paths :
708
+ exclude :
709
+ - docs/**
699
710
700
711
depends_on :
701
712
- testing-amd64
@@ -947,6 +958,9 @@ trigger:
947
958
- push
948
959
- tag
949
960
- pull_request
961
+ paths :
962
+ include :
963
+ - docs/**
950
964
951
965
steps :
952
966
- name : build-docs
@@ -1241,6 +1255,9 @@ depends_on:
1241
1255
trigger :
1242
1256
ref :
1243
1257
- " refs/pull/**"
1258
+ paths :
1259
+ exclude :
1260
+ - docs/**
1244
1261
1245
1262
steps :
1246
1263
- name : dryrun
0 commit comments