Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Use go build instead of go run to avoid forking
Browse files Browse the repository at this point in the history
  • Loading branch information
baluchicken committed Mar 4, 2024
1 parent bbd2c4e commit f5c9fb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/smoketest/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ runs:
touch /tmp/camblet.log /tmp/file-server.log /tmp/python.log
echo "Run processes"
sudo AGENT_METADATACOLLECTORS_DOCKER_ENABLED=true camblet agent > /tmp/camblet.log &
go run test/file-server.go >/tmp/file-server.log &
go build test/file-server.go
./file-server >/tmp/file-server.log &
docker run -d --rm -p 8080:80 nginx
sleep 2
Expand Down

0 comments on commit f5c9fb9

Please sign in to comment.