File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 59
59
echo "git status is clean; generated protos are consistent"
60
60
- name : Build
61
61
run : |
62
- fleetspeak/ build.sh
62
+ CGO_ENABLED=0 go build ./cmd/...
63
63
- name : Test
64
64
run : |
65
65
fleetspeak/test.sh
@@ -199,8 +199,7 @@ jobs:
199
199
pip install -e ./frr_python
200
200
- name : Build Go
201
201
run : |
202
- cd fleetspeak
203
- ./build.sh
202
+ CGO_ENABLED=0 go build ./cmd/...
204
203
- uses : ankane/setup-mysql@v1
205
204
with :
206
205
database : ${{ env.MYSQL_TEST_E2E_DB }}
Original file line number Diff line number Diff line change @@ -60,7 +60,10 @@ go build -o ./src/client/daemonservice/testclient/testclient{,.go}
60
60
go build -o ./src/client/socketservice/testclient/testclient{,.go}
61
61
go build -o ./src/server/grpcservice/client/testing/tester{,.go}
62
62
cd ..
63
+ # Required for src/e2etesting/localtesting.
63
64
go build -o ./cmd/fleetspeak_config/fleetspeak_config{,.go}
65
+ go build -o ./cmd/fleetspeak_client/fleetspeak_client{,.go}
66
+ go build -o ./cmd/fleetspeak_server/fleetspeak_server{,.go}
64
67
cd -
65
68
66
69
pretty_echo ' Executing Go tests.'
You can’t perform that action at this time.
0 commit comments