Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scenarios/macos/mac_net_aspire/mac_net_aspire.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class MacNetAspire(core.app_scenario.Scenario):

module = __module__.split('.')[-1]
prep_version = "6"
prep_version = "7"
resources = module + "_resources"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ log "-- Setting Python version"
pyenv global 3.12.10
check_status "Setting Python global version"

# Increase Playwright browser download timeout (default is too short for slow CDN)
export PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000
log "-- Set PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000 (5 minutes)"

# Verify Python version
PYTHON_VERSION=$(python --version 2>&1 | awk '{print $2}')
if [ "$PYTHON_VERSION" != "3.12.10" ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ if [ ! -f "build.sh" ]; then
fi
log "✓ build.sh found"

# Increase Playwright browser download timeout (default is too short for slow CDN)
export PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000
log "-- Set PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000 (5 minutes)"

# ============================================================================
# Clean phase (not timed)
# ============================================================================
Expand Down
2 changes: 1 addition & 1 deletion scenarios/windows/net_aspire/net_aspire.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class NetAspire(core.app_scenario.Scenario):

module = __module__.split('.')[-1]
prep_version = "6"
prep_version = "7"
resources = module + "_resources"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,12 @@ if ($isARM64) {
$env:DOTNET_INSTALL_DIR = "C:\Program Files\dotnet"
"-- Set DOTNET_INSTALL_DIR=$($env:DOTNET_INSTALL_DIR) to use system SDK" | log

# -------------------------------------------------------------------
# Increase Playwright browser download timeout (default is too short for slow CDN)
# -------------------------------------------------------------------
$env:PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT = "300000"
"-- Set PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000 (5 minutes)" | log

# -------------------------------------------------------------------
# Initial restore (so run iterations only need build)
# -------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ $env:DOTNET_INSTALL_DIR = "C:\Program Files\dotnet"
"-- All installed SDKs:" | log
dotnet --list-sdks 2>&1 | ForEach-Object { " $_" | log }

# Increase Playwright browser download timeout (default is too short for slow CDN)
$env:PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT = "300000"
"-- Set PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000 (5 minutes)" | log

# ============================================================================
# Clean phase (not timed)
# ============================================================================
Expand Down
Loading