Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fa66382

Browse files
committedJan 2, 2025
GetUserStatusChanges now passes all querier tests
1 parent d1c5baf commit fa66382

File tree

4 files changed

+604
-434
lines changed

4 files changed

+604
-434
lines changed
 

‎Makefile

+5-3
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,7 @@ lint/helm:
500500
# All files generated by the database should be added here, and this can be used
501501
# as a target for jobs that need to run after the database is generated.
502502
DB_GEN_FILES := \
503+
coderd/database/dump.sql \
503504
coderd/database/querier.go \
504505
coderd/database/unique_constraint.go \
505506
coderd/database/dbmem/dbmem.go \
@@ -519,8 +520,6 @@ GEN_FILES := \
519520
provisionersdk/proto/provisioner.pb.go \
520521
provisionerd/proto/provisionerd.pb.go \
521522
vpn/vpn.pb.go \
522-
coderd/database/dump.sql \
523-
$(DB_GEN_FILES) \
524523
site/src/api/typesGenerated.ts \
525524
coderd/rbac/object_gen.go \
526525
codersdk/rbacresources_gen.go \
@@ -540,9 +539,12 @@ GEN_FILES := \
540539
coderd/database/pubsub/psmock/psmock.go
541540

542541
# all gen targets should be added here and to gen/mark-fresh
543-
gen: $(GEN_FILES)
542+
gen: gen/db $(GEN_FILES)
544543
.PHONY: gen
545544

545+
gen/db: $(DB_GEN_FILES)
546+
.PHONY: gen/db
547+
546548
# Mark all generated files as fresh so make thinks they're up-to-date. This is
547549
# used during releases so we don't run generation scripts.
548550
gen/mark-fresh:
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.