From 3ce7c83283cb4112ccfb1cda9c4179be53a8dda3 Mon Sep 17 00:00:00 2001 From: Fabien Arcellier Date: Thu, 28 Nov 2024 07:15:08 +0100 Subject: [PATCH] chore: increase github action runner size --- .github/workflows/ci-e2e.yml | 11 +++++++++-- .github/workflows/ci-macos.yml | 10 +++++++++- .github/workflows/ci.yml | 8 ++++++++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yml index 74a291490..153622ca9 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yml @@ -7,11 +7,18 @@ 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: | + echo "OS : ${{ runner.os }}" + echo "Architecture : ${{ runner.arch }}" + echo "# CPU cores : ${{ runner.cores }}" + echo "Memory : ${{ runner.memory }}" + - uses: actions/checkout@v4 - name: Install poetry diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 9c757ca3d..a913310b2 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -11,12 +11,20 @@ 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: | + echo "OS : ${{ runner.os }}" + echo "Architecture : ${{ runner.arch }}" + echo "# CPU cores : ${{ runner.cores }}" + echo "Memory : ${{ runner.memory }}" + - uses: actions/checkout@v4 - name: Install poetry diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68c6d0396..f1f302d6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,14 @@ jobs: python-version: [ "3.9", "3.10", "3.11", "3.12" ] steps: + + - name: display system information + run: | + echo "OS : ${{ runner.os }}" + echo "Architecture : ${{ runner.arch }}" + echo "# CPU cores : ${{ runner.cores }}" + echo "Memory : ${{ runner.memory }}" + - uses: actions/checkout@v4 - name: Install poetry