Skip to content

Commit

Permalink
Merge pull request #205 from stellarwp/update-chrome-versions
Browse files Browse the repository at this point in the history
Update chrome container versions
  • Loading branch information
lucatume authored Dec 30, 2024
2 parents 394bb89 + d37bac2 commit bf866a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion slic-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ services:
interval: 1s
timeout: 3s
retries: 30
shm_size: "${SLIC_CHROME_CONTAINER_SHM_SIZE:-256m}"
shm_size: "${SLIC_CHROME_CONTAINER_SHM_SIZE:-512m}"

slic:
image: ghcr.io/stellarwp/slic-php${SLIC_PHP_VERSION}:${SLIC_VERSION}
Expand Down
4 changes: 2 additions & 2 deletions src/slic.php
Original file line number Diff line number Diff line change
Expand Up @@ -1642,10 +1642,10 @@ function is_arm64() {
function setup_architecture_env() {
if ( is_arm64() ) {
putenv( 'SLIC_ARCHITECTURE=arm64' );
putenv( 'SLIC_CHROME_CONTAINER=seleniarm/standalone-chromium:4.1.2-20220227' );
putenv( 'SLIC_CHROME_CONTAINER=seleniarm/standalone-chromium:4.20.0-20240427' );
} else {
putenv( 'SLIC_ARCHITECTURE=x86' );
putenv( 'SLIC_CHROME_CONTAINER=selenium/standalone-chrome:3.141.59' );
putenv( 'SLIC_CHROME_CONTAINER=selenium/standalone-chrome:4.27.0-20241225' );
}
}

Expand Down

0 comments on commit bf866a0

Please sign in to comment.