This website requires JavaScript.
Explore
Help
Sign In
ResiLien
/
nebula
Watch
2
Star
0
Fork
You've already forked nebula
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
bbe0a032bb
nebula
/
.github
/
workflows
/
smoke
/
Dockerfile
8 lines
88 B
Docker
Raw
Normal View
History
Unescape
Escape
Github Actions: Smoke test This change adds a new Github Action, a 3 node smoke test. It starts three docker containers (one lighthouse and two standard nodes) and tests that they can all ping each other. This should hopefully detect any basic runtime failures in PRs.
2019-12-17 06:17:25 +01:00
FROM
debian:buster
add `make smoke-docker` (#287) This makes it easier to use the docker container smoke test that GitHub actions runs. There is also `make smoke-docker-race` that runs the smoke test with `-race` enabled.
2021-03-01 17:15:15 +01:00
ADD
./build /nebula
Github Actions: Smoke test This change adds a new Github Action, a 3 node smoke test. It starts three docker containers (one lighthouse and two standard nodes) and tests that they can all ping each other. This should hopefully detect any basic runtime failures in PRs.
2019-12-17 06:17:25 +01:00
add `make smoke-docker` (#287) This makes it easier to use the docker container smoke test that GitHub actions runs. There is also `make smoke-docker-race` that runs the smoke test with `-race` enabled.
2021-03-01 17:15:15 +01:00
WORKDIR
/nebula
ENTRYPOINT
[
"/nebula/nebula"
]