-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Merge DockerManager and ServiceManager interfaces * feat: integrate dependencies from eigenlayer * feat: Integrate code from Eigenlayer * feat: Adjust dependencies * test: Merged interfaces * feat: Include monitoring stack * feat: Adjust monitoring stack dependencies * feat: Update changelog * refactor: Update mocks * tests: Adjust tests file handling for Windows OS * feat: Update PathMatcher adjustments * tests: Adjust file handling * feat: Add monitoring command * tests: e2e tests for monitoringStack * feat: Install latest Docker in CI/CD pipeline * feat: Install latest Docker in CI/CD pipeline for e2e * fix: Adjust Docker client version * feat: Adjust docker client API version * fix: Adjust platfrom issue for Windows * feat: Update services images * feat: Update docker-compose script * fix: Windows error * fix: File handling for Windows * feat: Update service versions * feat: Adjust monitoring clean command * feat: Update pipeline for Windows docker * feat: Remove unnecessary files * fix: Windows error * feat: Update gomod * feat: Adjust pipeline for Docker Windows * feat: Exclude e2e tests from unit-tests workflow * feat: Update e2e workflow * feat: Update daemon configuration for workflow * fix: Pipeline daemon for Windows * feat: e2e pipeline for Windows * feat: Install make for WSL in pipeline * feat: Update workflow * feat: Increase timeout for make codecov-test * feat: Ignore e2e tests in unit-tests workflow * feat: Install deps for WSL in pipeline * feat: Skip e2e tests for unit-tests workflow * feat: Update makefile * feat: Run e2e tests for unit-tests ubuntu * feat: Update go version for WSL pipeline * feat: Update e2e workflow * fix: Skip e2e in ubuntu unit-tests workflow * feat: Handle go installation for WSL * feat: Use actions for WSL in workflow * feat: Skip e2e monitoringStack test for Windows * feat: Update Go version * test: Refactor tests * refac: ComposeManager and Locker interfaces * test: Update mocks * refac: Remove unnecessary files * refac: Update services versions * style: Adjust formatting * tests: Fix errors
- Loading branch information
1 parent
ea6586f
commit 000cc79
Showing
97 changed files
with
36,172 additions
and
959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package actions | ||
|
||
import "github.com/docker/docker/api/types/container" | ||
|
||
// DockerServiceManager is an interface for managing Docker containers. | ||
type DockerServiceManager interface { | ||
Image(service string) (string, error) | ||
Stop(service string) error | ||
Start(service string) error | ||
IsRunning(service string) (bool, error) | ||
Wait(service string, condition container.WaitCondition) (<-chan container.WaitResponse, <-chan error) | ||
ContainerID(service string) (string, error) | ||
ContainerLogs(ctID, service string) (string, error) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.