Skip to content

Commit 5339c99

Browse files
authored
fix(ci): otdfctl go work use (#3364)
### Proposed Changes * match the go work use commands in otdfctl to other modules so that CI works in otdfctl release branches ### Checklist - [ ] I have added or updated unit tests - [ ] I have added or updated integration tests (if appropriate) - [ ] I have added or updated documentation ### Testing Instructions <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added end-to-end tests for otdfctl * **Bug Fixes** * Updated SDK dependency to the latest version <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent e46f07d commit 5339c99

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/scripts/work-init.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ examples)
6262
otdfctl)
6363
rm -f go.work go.work.sum &&
6464
go work init &&
65-
go work use ./otdfctl
65+
go work use ./otdfctl &&
66+
# service and examples are needed for release branch checks
67+
go work use ./service &&
68+
go work use ./examples
6669
;;
6770
*)
6871
echo "[ERROR] unknown component [${component}]"

0 commit comments

Comments
 (0)