Skip to content

Commit

Permalink
.github: change github runners for e2e web/widget to blacksmith
Browse files Browse the repository at this point in the history
This change is a proof of concept to show if blacksmith runners
can be faster for some of the longest running pipelines in novu's
CI.

This is as per a conversation with Dima over email!
  • Loading branch information
adityamaru committed Mar 21, 2024
1 parent 4f569cc commit 4c0d782
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/reusable-web-e2e.yml
Expand Up @@ -24,9 +24,11 @@ jobs:
# leaving the Dashboard hanging ...
# https://github.com/cypress-io/github-action/issues/48
fail-fast: false
matrix:
runner: [ubuntu-latest, blacksmith-4vcpu-ubuntu-2204]

Check warning on line 28 in .github/workflows/reusable-web-e2e.yml

View workflow job for this annotation

GitHub Actions / Spell check

Unknown word (vcpu)

# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
timeout-minutes: 80

permissions:
Expand Down Expand Up @@ -151,7 +153,10 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip')"

# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: [ubuntu-latest, blacksmith-4vcpu-ubuntu-2204]

Check warning on line 159 in .github/workflows/reusable-web-e2e.yml

View workflow job for this annotation

GitHub Actions / Spell check

Unknown word (vcpu)
timeout-minutes: 80

# Steps represent a sequence of tasks that will be executed as part of the job
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/reusable-widget-e2e.yml
Expand Up @@ -16,7 +16,10 @@ jobs:
# This workflow contains a single job called "build"
e2e_widget:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: [ubuntu-latest, blacksmith-4vcpu-ubuntu-2204]

Check warning on line 22 in .github/workflows/reusable-widget-e2e.yml

View workflow job for this annotation

GitHub Actions / Spell check

Unknown word (vcpu)
timeout-minutes: 80
permissions:
contents: read
Expand Down

0 comments on commit 4c0d782

Please sign in to comment.