File tree 5 files changed +10
-10
lines changed 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 46
46
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
47
47
with :
48
48
go-version-file : go.mod
49
- cache : true
49
+ cache : false
50
50
- name : Build for macOS ${{ inputs.version }} (${{ inputs.output_arch }})
51
51
run : |
52
52
brew install lz4 automake autoconf libtool yq llvm
Original file line number Diff line number Diff line change 74
74
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
75
75
with :
76
76
go-version-file : go.mod
77
- cache : true
77
+ cache : false
78
78
- run : make gen-code
79
79
- run : git diff --exit-code
80
80
unit-tests :
94
94
# Since this repository is not meant to be used as a library,
95
95
# we don't need to test the latest 2 major releases like Go does: https://go.dev/doc/devel/release#policy.
96
96
go-version-file : go.mod
97
- cache : true
97
+ cache : false
98
98
- run : make test-unit
99
99
# It's recommended to run golangci-lint in a job separate from other jobs (go test, etc) because different jobs run in parallel.
100
100
go-linter :
@@ -105,7 +105,7 @@ jobs:
105
105
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
106
106
with :
107
107
go-version-file : go.mod
108
- cache : false # caching can result in tar errors that files already exist
108
+ cache : false
109
109
- name : set GOOS env to windows
110
110
run : |
111
111
echo "GOOS=windows" >> $GITHUB_ENV
@@ -145,7 +145,7 @@ jobs:
145
145
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
146
146
with :
147
147
go-version-file : go.mod
148
- cache : true
148
+ cache : false
149
149
# TODO: Use `go mod tidy --check` after https://github.com/golang/go/issues/27005 is fixed.
150
150
- run : go mod tidy
151
151
- run : git diff --exit-code
@@ -156,7 +156,7 @@ jobs:
156
156
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
157
157
with :
158
158
go-version-file : go.mod
159
- cache : true
159
+ cache : false
160
160
- run : make check-licenses
161
161
macos-e2e-tests :
162
162
strategy :
Original file line number Diff line number Diff line change 42
42
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
43
43
with :
44
44
go-version-file : go.mod
45
- cache : true
45
+ cache : false
46
46
- name : Set output variables
47
47
id : vars
48
48
run : |
Original file line number Diff line number Diff line change 49
49
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
50
50
with :
51
51
go-version-file : go.mod
52
- cache : true
52
+ cache : false
53
53
- name : Clean up previous files
54
54
run : |
55
55
sudo rm -rf /opt/finch
Original file line number Diff line number Diff line change 24
24
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
25
25
with :
26
26
go-version-file : go.mod
27
- cache : true
27
+ cache : false
28
28
- name : Make macos aarch64 build
29
29
run : |
30
30
brew install lz4 automake autoconf libtool yq
53
53
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
54
54
with :
55
55
go-version-file : go.mod
56
- cache : true
56
+ cache : false
57
57
- name : Make macos x86_64 build
58
58
run : |
59
59
brew install lz4 automake autoconf libtool yq
You can’t perform that action at this time.
0 commit comments