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 78ea5dd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 78ea5dd

Please sign in to comment.