You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().Bool("jailed-execution", false, "Run all build commands using runc (defaults to false)")
182
182
cmd.Flags().UintP("max-concurrent-tasks", "j", uint(cpus), "Limit the number of max concurrent build tasks - set to 0 to disable the limit")
183
183
cmd.Flags().String("coverage-output-path", "", "Output path where test coverage file will be copied after running tests")
184
+
cmd.Flags().Bool("disable-coverage", false, "Disable test coverage collection (defaults to false)")
184
185
cmd.Flags().StringToString("docker-build-options", nil, "Options passed to all 'docker build' commands")
185
186
cmd.Flags().String("report", "", "Generate a HTML report after the build has finished. (e.g. --report myreport.html)")
186
187
cmd.Flags().String("report-segment", os.Getenv("LEEWAY_SEGMENT_KEY"), "Report build events to segment using the segment key (defaults to $LEEWAY_SEGMENT_KEY)")
187
188
cmd.Flags().Bool("report-github", os.Getenv("GITHUB_OUTPUT") !="", "Report package build success/failure to GitHub Actions using the GITHUB_OUTPUT environment variable")
189
+
cmd.Flags().Bool("fixed-build-dir", false, "Use a fixed build directory for each package, instead of based on the package version, to better utilize caches based on absolute paths (defaults to false)")
0 commit comments