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
echo "- generate-api: Generates Elasticsearch client from REST API specs"
149
204
echo "- start-elasticsearch: Starts Elasticsearch docker container with the given version and distribution"
150
205
echo "- stop-elasticsearch: Stops Elasticsearch docker container, if running"
206
+
echo
151
207
echo "- test-yaml: Generates and runs yaml_test_runner package xpack/oss tests against a given Elasticsearch version"
152
208
echo "- test-generator: Generates and runs api_generator package tests"
153
209
echo "- test: Runs elasticsearch package tests against a given Elasticsearch version"
154
210
echo
211
+
echo "- generate-release-notes: Generates release notes for elasticsearch crate."
212
+
echo " pass OLD_VERSION and NEW_VERSION environment variables to match release version GitHub labels e.g. v7.9.0-alpha.1"
213
+
echo "- package: Packages the elasticsearch crate."
214
+
echo " package flags can be overridden with CARGO_MAKE_CARGO_PACKAGE_FLAGS environment variable"
215
+
echo "- publish: Publishes the elasticsearch crate."
216
+
echo " By default, peforms a dry run by passing --dry-run, but publish flags can be overridden with CARGO_MAKE_CARGO_PUBLISH_FLAGS environment variable"
217
+
echo
155
218
echo "Most tasks use these environment variables:"
156
219
echo "- STACK_VERSION (default '$STACK_VERSION'): the version of Elasticsearch"
157
220
echo "- TEST_SUITE ('oss' or 'xpack', default '$TEST_SUITE'): the distribution of Elasticsearch"
@@ -173,9 +236,16 @@ script = ['''
173
236
echo - test-generator: Generates and runs api_generator package tests
174
237
echo - test: Runs elasticsearch package tests against a given Elasticsearch version
175
238
echo.
239
+
echo - generate-release-notes: Generates release notes for elasticsearch crate
240
+
echo pass OLD_VERSION and NEW_VERSION environment variables to match release version GitHub labels e.g. v7.9.0-alpha.1
241
+
echo - package: Packages the elasticsearch crate.
242
+
echo package flags can be overridden with CARGO_MAKE_CARGO_PACKAGE_FLAGS environment variable
243
+
echo - publish: Publishes the elasticsearch crate.
244
+
echo By default, peforms a dry run by passing --dry-run, but publish flags can be overridden with CARGO_MAKE_CARGO_PUBLISH_FLAGS environment variable
245
+
echo.
176
246
echo Most tasks use these environment variables:
177
-
echo - STACK_VERSION (default '$STACK_VERSION'): the version of Elasticsearch
178
-
echo - TEST_SUITE ('oss' or 'xpack', default '$TEST_SUITE'): the distribution of Elasticsearch
247
+
echo - STACK_VERSION (default '%STACK_VERSION%'): the version of Elasticsearch
248
+
echo - TEST_SUITE ('oss' or 'xpack', default '%TEST_SUITE%'): the distribution of Elasticsearch
179
249
echo - CI (default not set): set when running on CI to determine whether to start Elasticsearch and format test output as JSON
180
250
echo.
181
251
echo Run 'cargo make --list-all-steps' for a complete list of available tasks.
0 commit comments