Skip to content

Commit

Permalink
chore: increase github action runner size
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienArcellier committed Nov 28, 2024
1 parent 8774f9b commit 3ce7c83
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ce7c83

Please sign in to comment.