diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yml index 74a291490..91c0903a7 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yml @@ -7,11 +7,17 @@ on: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large strategy: matrix: browser: [ "chromium", "firefox", "webkit" ] - steps: + steps: + - name: display system information + run: | + lscpu + free -h + df -h + - uses: actions/checkout@v4 - name: Install poetry diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 9c757ca3d..e96125c98 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -11,12 +11,18 @@ on: jobs: build: - runs-on: macos-13 + runs-on: macos-13-large strategy: matrix: python-version: [ "3.9", "3.10", "3.11", "3.12" ] steps: + + - name: display system information + run: | + system_profiler SPHardwareDataType + sysctl -a | grep cpu + - uses: actions/checkout@v4 - name: Install poetry diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68c6d0396..3629f2b5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,13 @@ jobs: python-version: [ "3.9", "3.10", "3.11", "3.12" ] steps: + + - name: display system information + run: | + lscpu + free -h + df -h + - uses: actions/checkout@v4 - name: Install poetry