@@ -59,35 +59,35 @@ jobs:
59
59
- run : |
60
60
go get github.com/antlr4-go/antlr/v4
61
61
go test ./cmd/a2l/...
62
- test-mac :
63
- runs-on : macos-latest-xlarge
64
- needs :
65
- - generate-antlr-sources
66
- - generate-grpc-sources
67
- steps :
68
- - uses : actions/checkout@v3
69
- - uses : actions/download-artifact@v3
70
- with :
71
- name : antlr4
72
- path : pkg/a2l/parser
73
- - uses : actions/download-artifact@v3
74
- with :
75
- name : grpc
76
- path : pkg/a2l
77
- - name : Set up Go 1.21
78
- uses : actions/setup-go@v4
79
- with :
80
- go-version : " 1.21"
81
- cache : true
82
- - run : |
83
- go get github.com/antlr4-go/antlr/v4
84
- go test ./cmd/a2l/...
62
+ # test-mac:
63
+ # runs-on: macos-latest-xlarge
64
+ # needs:
65
+ # - generate-antlr-sources
66
+ # - generate-grpc-sources
67
+ # steps:
68
+ # - uses: actions/checkout@v4
69
+ # - uses: actions/download-artifact@v3
70
+ # with:
71
+ # name: antlr4
72
+ # path: pkg/a2l/parser
73
+ # - uses: actions/download-artifact@v3
74
+ # with:
75
+ # name: grpc
76
+ # path: pkg/a2l
77
+ # - name: Set up Go 1.21
78
+ # uses: actions/setup-go@v4
79
+ # with:
80
+ # go-version: "1.21"
81
+ # cache: true
82
+ # - run: |
83
+ # go get github.com/antlr4-go/antlr/v4
84
+ # go test ./cmd/a2l/...
85
85
build-linux :
86
86
runs-on : ubuntu-22.04
87
87
needs :
88
88
- test-linux
89
89
- test-windows
90
- - test-mac
90
+ # - test-mac
91
91
steps :
92
92
- uses : actions/checkout@v4
93
93
- uses : actions/download-artifact@v3
@@ -112,7 +112,7 @@ jobs:
112
112
needs :
113
113
- test-linux
114
114
- test-windows
115
- - test-mac
115
+ # - test-mac
116
116
steps :
117
117
- uses : actions/checkout@v4
118
118
- uses : actions/download-artifact@v3
@@ -139,7 +139,7 @@ jobs:
139
139
needs :
140
140
- test-linux
141
141
- test-windows
142
- - test-mac
142
+ # - test-mac
143
143
steps :
144
144
- uses : actions/checkout@v4
145
145
- uses : actions/download-artifact@v3
@@ -159,36 +159,36 @@ jobs:
159
159
path : |
160
160
*.dll
161
161
*.h
162
- build-mac :
163
- runs-on : macos-latest-xlarge
164
- needs :
165
- - test-linux
166
- - test-windows
167
- - test-mac
168
- steps :
169
- - uses : actions/checkout@v3
170
- - uses : actions/download-artifact@v3
171
- with :
172
- name : antlr4
173
- path : pkg/a2l/parser
174
- - uses : actions/download-artifact@v3
175
- with :
176
- name : grpc
177
- path : pkg/a2l
178
- - name : Set up Go 1.21
179
- uses : actions/setup-go@v4
180
- with :
181
- go-version : " 1.21"
182
- cache : true
183
- - run : |
184
- go get github.com/antlr4-go/antlr/v4
185
- go build --buildmode=c-shared -o a2l_grpc_$(go env GOOS)_$(go env GOARCH).dylib ./cmd/a2l/a2l.go
186
- - uses : actions/upload-artifact@v3
187
- with :
188
- name : mac
189
- path : |
190
- *.dylib
191
- *.h
162
+ # build-mac:
163
+ # runs-on: macos-latest-xlarge
164
+ # needs:
165
+ # - test-linux
166
+ # - test-windows
167
+ # - test-mac
168
+ # steps:
169
+ # - uses: actions/checkout@v4
170
+ # - uses: actions/download-artifact@v3
171
+ # with:
172
+ # name: antlr4
173
+ # path: pkg/a2l/parser
174
+ # - uses: actions/download-artifact@v3
175
+ # with:
176
+ # name: grpc
177
+ # path: pkg/a2l
178
+ # - name: Set up Go 1.21
179
+ # uses: actions/setup-go@v4
180
+ # with:
181
+ # go-version: "1.21"
182
+ # cache: true
183
+ # - run: |
184
+ # go get github.com/antlr4-go/antlr/v4
185
+ # go build --buildmode=c-shared -o a2l_grpc_$(go env GOOS)_$(go env GOARCH).dylib ./cmd/a2l/a2l.go
186
+ # - uses: actions/upload-artifact@v4
187
+ # with:
188
+ # name: mac
189
+ # path: |
190
+ # *.dylib
191
+ # *.h
192
192
export-protobuf-definitions :
193
193
runs-on : ubuntu-22.04
194
194
steps :
@@ -206,7 +206,7 @@ jobs:
206
206
- build-linux
207
207
- build-windows-32
208
208
- build-windows-64
209
- - build-mac
209
+ # - build-mac
210
210
- export-protobuf-definitions
211
211
if : startsWith(github.ref, 'refs/tags/v')
212
212
steps :
@@ -220,10 +220,10 @@ jobs:
220
220
with :
221
221
name : windows
222
222
path : a2l_grpc
223
- - uses : actions/download-artifact@v3
224
- with :
225
- name : mac
226
- path : a2l_grpc
223
+ # - uses: actions/download-artifact@v3
224
+ # with:
225
+ # name: mac
226
+ # path: a2l_grpc
227
227
- uses : actions/download-artifact@v3
228
228
with :
229
229
name : protobuf
0 commit comments