Skip to content

Commit 0443e4c

Browse files
authored
chore: include plugin build in setup target (#2651)
1 parent cd38084 commit 0443e4c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/router-ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
- 'router-plugin/**/*'
1010
- 'router-tests/**/*'
1111
- 'connect/**/*'
12+
- 'Makefile'
1213
- '.github/workflows/router-ci.yaml'
1314

1415
concurrency:

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,23 @@ create-demo:
8585
delete-demo:
8686
./scripts/delete-local-demo.sh
8787

88+
build-plugins:
89+
$(MAKE) -C demo plugin-build-ci
90+
8891
dev-setup: prerequisites
8992
pnpm install
9093
pnpm generate
9194
make generate-go
9295
make infra-up
9396
pnpm -r run --filter '!studio' build
97+
make build-plugins
9498

9599
dev-setup-no-infra: prerequisites
96100
pnpm install
97101
pnpm generate
98102
make generate-go
99103
pnpm -r run --filter '!studio' build
104+
make build-plugins
100105

101106
build-pnpm:
102107
pnpm install

0 commit comments

Comments
 (0)