mirror of
https://github.com/linuxserver/docker-ci.git
synced 2026-02-05 19:20:42 +08:00
Pull latest tester image, add .summary hover color
This commit is contained in:
parent
5502987556
commit
6ca76d5cc2
6
ci/ci.py
6
ci/ci.py
@ -104,12 +104,16 @@ class CI(SetEnvs):
|
||||
aws_secret_access_key=self.s3_secret)
|
||||
|
||||
def run(self,tags: list) -> None:
|
||||
"""Will iterate over all the tags running container_test() on each tag multithreaded.
|
||||
"""Will iterate over all the tags running container_test() on each tag, multithreaded.
|
||||
|
||||
Also does a pull of the linuxserver/tester:latest image before running container_test.
|
||||
|
||||
Args:
|
||||
`tags` (list): All the tags we will test on the image.
|
||||
|
||||
"""
|
||||
self.logger.info("Pulling ghcr.io/linuxserver/tester:latest")
|
||||
self.client.images.pull(repository="ghcr.io/linuxserver/tester", tag="latest") # Pulls latest tester image.
|
||||
thread_pool = ThreadPool(processes=10)
|
||||
thread_pool.map(self.container_test,tags)
|
||||
display = Display(size=(1920, 1080)) # Setup an x virtual frame buffer (Xvfb) that Selenium can use during the tests.
|
||||
|
||||
@ -58,6 +58,10 @@
|
||||
color: rgba(218, 59, 138);
|
||||
}
|
||||
|
||||
.summary:hover {
|
||||
color: rgb(188, 52, 120);
|
||||
}
|
||||
|
||||
.styled-table {
|
||||
border: solid 1px rgb(255 255 255 / 10%);
|
||||
}
|
||||
@ -449,6 +453,10 @@
|
||||
color: darkorange;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.warning-summary:hover {
|
||||
color: #ff8c00db;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user