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
* Default message is now in duckscript so its same code for all platforms. no need for code duplication.
* start/stop search task has a base task so common code is there.
* start/stop search task no longer has a windows specific implementation
* Move CI env var which isn't supported for all CI vendors to CARGO_MAKE_CI which supports all.
* Update Makefile.toml
Co-authored-by: Russ Cam <russ.cam@elastic.co>
(cherry picked from commit 51fd5da)
echo "- generate-api: Generates Elasticsearch client from REST API specs"
204
-
echo "- start-elasticsearch: Starts Elasticsearch docker container with the given version and distribution"
205
-
echo "- stop-elasticsearch: Stops Elasticsearch docker container, if running"
206
-
echo
207
-
echo "- test-yaml: Generates and runs yaml_test_runner package xpack/oss tests against a given Elasticsearch version"
208
-
echo "- test-generator: Generates and runs api_generator package tests"
209
-
echo "- test: Runs elasticsearch package tests against a given Elasticsearch version"
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
218
-
echo "Most tasks use these environment variables:"
219
-
echo "- STACK_VERSION (default '$STACK_VERSION'): the version of Elasticsearch"
220
-
echo "- TEST_SUITE ('oss' or 'xpack', default '$TEST_SUITE'): the distribution of Elasticsearch"
221
-
echo "- CI (default not set): set when running on CI to determine whether to start Elasticsearch and format test output as JSON"
222
-
echo
223
-
echo "Run 'cargo make --list-all-steps' for a complete list of available tasks."
224
-
echo
225
-
''']
226
-
227
-
[tasks.default.windows]
228
-
script = ['''
229
-
@echo off
230
-
echo.
231
206
echo Main tasks:
232
207
echo - generate-api: Generates Elasticsearch client from REST API specs
233
208
echo - start-elasticsearch: Starts Elasticsearch docker container with the given version and distribution
234
209
echo - stop-elasticsearch: Stops Elasticsearch docker container, if running
210
+
echo
235
211
echo - test-yaml: Generates and runs yaml_test_runner package xpack/oss tests against a given Elasticsearch version
236
212
echo - test-generator: Generates and runs api_generator package tests
237
213
echo - test: Runs elasticsearch package tests against a given Elasticsearch version
238
-
echo.
239
-
echo - generate-release-notes: Generates release notes for elasticsearch crate
214
+
echo
215
+
echo - generate-release-notes: Generates release notes for elasticsearch crate.
240
216
echo pass OLD_VERSION and NEW_VERSION environment variables to match release version GitHub labels e.g. v7.9.0-alpha.1
241
217
echo - package: Packages the elasticsearch crate.
242
218
echo package flags can be overridden with CARGO_MAKE_CARGO_PACKAGE_FLAGS environment variable
243
219
echo - publish: Publishes the elasticsearch crate.
244
220
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.
221
+
echo
246
222
echo Most tasks use these environment variables:
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
223
+
echo - STACK_VERSION (default '${STACK_VERSION}'): the version of Elasticsearch
224
+
echo - TEST_SUITE ('oss' or 'xpack', default '${TEST_SUITE}'): the distribution of Elasticsearch
249
225
echo - CI (default not set): set when running on CI to determine whether to start Elasticsearch and format test output as JSON
250
-
echo.
226
+
echo
251
227
echo Run 'cargo make --list-all-steps' for a complete list of available tasks.
0 commit comments