File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 33
33
PLATFORM : linux/amd64,linux/arm64
34
34
commands :
35
35
- make
36
+ - make check-dirty
36
37
when :
37
38
event :
38
39
include :
@@ -116,6 +117,7 @@ steps:
116
117
pull : always
117
118
commands :
118
119
- make release
120
+ - make check-dirty
119
121
when :
120
122
event :
121
123
- tag
@@ -181,6 +183,6 @@ depends_on:
181
183
182
184
---
183
185
kind : signature
184
- hmac : 405eea502f51dfc9368f81971ca97c96ac99f5fff6ddc1afa613894e80dd67c2
186
+ hmac : 08c8794304be76a3ddf7d3fd138b79c792dd747c9d57004e7836363fb0985e32
185
187
186
188
...
Original file line number Diff line number Diff line change @@ -125,6 +125,9 @@ run: install ## Run the controller locally. This is for testing purposes only.
125
125
clean :
126
126
@rm -rf $(ARTIFACTS )
127
127
128
+ check-dirty : # # Verifies that source tree is not dirty
129
+ @if test -n " ` git status --porcelain` " ; then echo " Source tree is dirty" ; git status; exit 1 ; fi
130
+
128
131
conformance : # # Performs policy checks against the commit and source code.
129
132
docker run --rm -it -v $(PWD ) :/src -w /src ghcr.io/talos-systems/conform:v0.1.0-alpha.23 enforce
130
133
Original file line number Diff line number Diff line change @@ -182,8 +182,9 @@ spec:
182
182
consumed
183
183
type : boolean
184
184
talosConfig :
185
- description : Talos config will be a string containing the config for
186
- download
185
+ description : " Talos config will be a string containing the config
186
+ for download. \n Deprecated: please use `<cluster>-talosconfig`
187
+ secret."
187
188
type : string
188
189
type : object
189
190
type : object
You can’t perform that action at this time.
0 commit comments