[Security Solution] Fix osquery Cypress CI build (#165677)

## Summary

It fixes Osquery Cypress CI build step by rolling back the changes.

## Details

https://github.com/elastic/kibana/pull/165541 broke Osquery build step
by running junit transformation command while Osquery Cypress tests
don't produce any reports. The fix just removes junit transformation
command.
This commit is contained in:
Maxim Palenov 2023-09-05 19:12:04 +02:00 committed by GitHub
parent db591a7223
commit c54acc3b1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -14,5 +14,4 @@ echo "--- Osquery Cypress tests"
cd x-pack/plugins/osquery
set +e
yarn cypress:run; status=$?; yarn junit:merge && exit $status
yarn --cwd x-pack/plugins/osquery cypress:run

View file

@ -14,5 +14,4 @@ buildkite-agent meta-data set "${BUILDKITE_JOB_ID}_is_test_execution_step" 'fals
echo "--- Osquery Cypress tests, burning changed specs (Chrome)"
set +e
yarn cypress:changed-specs-only; status=$?; yarn junit:merge && exit $status
yarn --cwd x-pack/plugins/osquery cypress:changed-specs-only