Skip to content

Commit

Permalink
ci: use larger Linux resource class for slow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored Nov 2, 2024
1 parent 4e7517c commit 12b4ab8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ version: 2.1
orbs:
node: electronjs/[email protected]

executors:
linux-medium-plus:
docker:
- image: cimg/base:stable
resource_class: medium+

commands:
install:
steps:
Expand Down Expand Up @@ -126,7 +132,7 @@ jobs:
npm install [email protected]
- when:
condition:
equal: [node/linux, << parameters.executor >>]
equal: [linux-medium-plus, << parameters.executor >>]
steps:
- run:
name: Linux specific setup
Expand Down Expand Up @@ -174,10 +180,10 @@ workflows:
- lint-and-build
matrix:
parameters:
executor: [node/windows, node/linux, node/macos]
executor: [node/windows, linux-medium-plus, node/macos]
arch: [x64, arm64]
exclude:
- executor: node/windows
arch: arm64
- executor: node/linux
- executor: linux-medium-plus
arch: arm64

0 comments on commit 12b4ab8

Please sign in to comment.