Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(v2): parameterise v2 packages ci to minimise duplication #5565

Merged
merged 6 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 0 additions & 77 deletions .github/workflows/hardhat-chai-matchers-ci.yml

This file was deleted.

110 changes: 110 additions & 0 deletions .github/workflows/hardhat-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
name: CI

on:
push:
branches: main
paths:
- ".github/workflows/hardhat-ci.yml"
- "packages/**"
- "config/**"
- "pnpm-lock.yaml"
pull_request:
paths:
- ".github/workflows/hardhat-ci.yml"
- "packages/**"
- "config/**"
- "pnpm-lock.yaml"
workflow_dispatch:

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
list-packages:
name: List packages
runs-on: ubuntu-latest
outputs:
packages: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yq -p yaml -o json pnpm-lock.yaml | tee pnpm-lock.json
- id: generate
env:
PACKAGE_IGNORE: |
[
".",
"v-next/",
"packages/common",
"packages/eslint-plugin-hardhat-internal-rules",
"packages/eslint-plugin-slow-imports",
"packages/hardhat-core"
]
COMMON_FILTERS: |
[
".github/workflows/hardhat-ci.yml",
"config/**",
"packages/common/**",
"pnpm-lock.yaml"
]
run: |
echo "filters<<EOF" >> $GITHUB_OUTPUT
node scripts/generate-filters.js |
yq -Po yaml 'with_entries(.key |= sub("^packages/", ""))' |
tee -a $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- id: filter
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: ${{ steps.generate.outputs.filters }}

ci:
needs: list-packages

if: needs.list-packages.outputs.packages != '[]'

strategy:
fail-fast: false
matrix:
package: ${{ fromJson(needs.list-packages.outputs.packages) }}
os: [ubuntu-latest, macos-latest, windows-latest]
node: [18, 20, 22]
exclude:
- package: hardhat-vyper
os: windows-latest
- package: hardhat-vyper
os: macos-latest
- os: windows-latest
node: 20
- os: macos-latest
node: 20
- os: windows-latest
node: 22
- os: macos-latest
node: 22

name: "[${{ matrix.package }}] ci on ${{ matrix.os }} (Node ${{ matrix.node }})"
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: packages/${{ matrix.package }}

steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: Run tests
run: pnpm run ${{ matrix.package == 'hardhat-chai-matchers' && 'test:ci' || 'test' }}
73 changes: 0 additions & 73 deletions .github/workflows/hardhat-ethers-ci.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/hardhat-foundry-ci.yml

This file was deleted.

Loading