ci: do a full cron build every day, and limit builds per push or pr (#15839)

This commit is contained in:
Anonymous Maarten
2026-06-17 15:44:15 +02:00
committed by GitHub
parent da8aa39222
commit 71b9adda21
3 changed files with 74 additions and 51 deletions

View File

@@ -55,11 +55,11 @@ jobs:
version: 3.1.35
- uses: browser-actions/setup-chrome@v2
id: setup-chrome
if: ${{ matrix.platform.platform == 'emscripten' }}
if: ${{ matrix.platform.platform == 'emscripten' && matrix.platform.run-tests }}
with:
install-chromedriver: true
- name: 'Add chrome to PATH'
if: ${{ matrix.platform.platform == 'emscripten' }}
if: ${{ matrix.platform.platform == 'emscripten' && matrix.platform.run-tests }}
run: |
chrome_dir="$(dirname "${{ steps.setup-chrome.outputs.chrome-path }}")"
chromedriver_dir="$(dirname "${{ steps.setup-chrome.outputs.chromedriver-path }}")"