Skip to content

Conversation

@mergify
Copy link
Contributor

@mergify mergify bot commented Oct 11, 2021

This is an automatic backport of pull request #28253 done by Mergify.

Mergify commands and options

More conditions and actions can be found in the documentation.

You can also trigger Mergify actions by commenting on this pull request:

  • @Mergifyio refresh will re-evaluate the rules
  • @Mergifyio rebase will rebase this PR on its base branch
  • @Mergifyio update will merge the base branch into this PR
  • @Mergifyio backport <destination> will backport this PR on <destination> branch

Additionally, on Mergify dashboard you can:

  • look at your merge queues
  • generate the Mergify configuration with the config editor.

Finally, you can contact us on https://mergify.io/

@mergify mergify bot added backport conflicts There is a conflict in the backported pull request labels Oct 11, 2021
@mergify mergify bot assigned kvch Oct 11, 2021
@botelastic botelastic bot added the needs_team Indicates that the issue/PR needs a Team:* label label Oct 11, 2021
@botelastic
Copy link

botelastic bot commented Oct 11, 2021

This pull request doesn't have a Team:<team> label.

@elasticmachine
Copy link
Collaborator

elasticmachine commented Oct 11, 2021

💔 Tests Failed

the below badges are clickable and redirect to their specific view in the CI or DOCS
Pipeline View Test View Changes Artifacts preview preview

Expand to view the summary

Build stats

  • Start Time: 2021-10-25T10:14:33.103+0000

  • Duration: 72 min 12 sec

  • Commit: 7c391f2

Test stats 🧪

Test Results
Failed 1
Passed 20839
Skipped 1524
Total 22364

Test errors 1

Expand to view the tests failures

Build&Test / filebeat-windows-windows-2019 / test_file_no_permission – filebeat.tests.system.test_crawler.Test
    Expand to view the error details

     PermissionError: [WinError 5] Access is denied: 'C:\\Users\\jenkins\\workspace\\PR-28339-3-f60e503f-ad28-4958-9791-3a1243d6cb30\\src\\github.com\\elastic\\beats\\filebeat\\build\\system-tests\\run\\test_crawler.Test.test_file_no_permission\\log\\test.log' 
    

    Expand to view the stacktrace

     ..\libbeat\tests\system\beat\beat.py:331: in setUp
        shutil.rmtree(self.working_dir)
    C:\Python38\lib\shutil.py:737: in rmtree
        return _rmtree_unsafe(path, onerror)
    C:\Python38\lib\shutil.py:610: in _rmtree_unsafe
        _rmtree_unsafe(fullname, onerror)
    C:\Python38\lib\shutil.py:615: in _rmtree_unsafe
        onerror(os.unlink, fullname, sys.exc_info())
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    
    path = 'C:\\Users\\jenkins\\workspace\\PR-28339-3-f60e503f-ad28-4958-9791-3a1243d6cb30\\src\\github.com\\elastic\\beats\\filebeat\\build\\system-tests\\run\\test_crawler.Test.test_file_no_permission\\log'
    onerror = <function rmtree.<locals>.onerror at 0x00000271263E4160>
    
        def _rmtree_unsafe(path, onerror):
            try:
                with os.scandir(path) as scandir_it:
                    entries = list(scandir_it)
            except OSError:
                onerror(os.scandir, path, sys.exc_info())
                entries = []
            for entry in entries:
                fullname = entry.path
                if _rmtree_isdir(entry):
                    try:
                        if entry.is_symlink():
                            # This can only happen if someone replaces
                            # a directory with a symlink after the call to
                            # os.scandir or entry.is_dir above.
                            raise OSError("Cannot call rmtree on a symbolic link")
                    except OSError:
                        onerror(os.path.islink, fullname, sys.exc_info())
                        continue
                    _rmtree_unsafe(fullname, onerror)
                else:
                    try:
    >                   os.unlink(fullname)
    E                   PermissionError: [WinError 5] Access is denied: 'C:\\Users\\jenkins\\workspace\\PR-28339-3-f60e503f-ad28-4958-9791-3a1243d6cb30\\src\\github.com\\elastic\\beats\\filebeat\\build\\system-tests\\run\\test_crawler.Test.test_file_no_permission\\log\\test.log'
    
    C:\Python38\lib\shutil.py:613: PermissionError 
    

Steps errors 5

Expand to view the steps failures

filebeat-windows-windows-2019 - mage build unitTest
  • Took 6 min 8 sec . View more details here
  • Description: mage build unitTest
filebeat-windows-windows-2019 - mage build unitTest
  • Took 4 min 43 sec . View more details here
  • Description: mage build unitTest
filebeat-windows-windows-2019 - mage build unitTest
  • Took 4 min 44 sec . View more details here
  • Description: mage build unitTest
gsutil -m -q cp -a public-read build/system-tests-*.tar.gz gs://beats-ci-temp/Beats/beats/PR-28339-3
  • Took 0 min 3 sec . View more details here
  • Description: @echo off gsutil -m -q cp -a public-read build/system-tests-*.tar.gz gs://beats-ci-temp/Beats/beats/PR-28339-3
Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error 'hudson.AbortException: script returned exit code 1'

🐛 Flaky test report

❕ There are test failures but not known flaky tests.

Expand to view the summary

Genuine test errors 1

💔 There are test failures but not known flaky tests, most likely a genuine test failure.

  • Name: Build&Test / filebeat-windows-windows-2019 / test_file_no_permission – filebeat.tests.system.test_crawler.Test

🤖 GitHub comments

To re-run your PR in the CI, just comment with:

  • /test : Re-trigger the build.

  • /package : Generate the packages and run the E2E tests.

  • /beats-tester : Run the installation tests with beats-tester.

@mergify
Copy link
Contributor Author

mergify bot commented Oct 14, 2021

This pull request is now in conflicts. Could you fix it? 🙏
To fixup this pull request, you can check out it locally. See documentation: https://help.github.com/articles/checking-out-pull-requests-locally/

git fetch upstream
git checkout -b mergify/bp/7.x/pr-28253 upstream/mergify/bp/7.x/pr-28253
git merge upstream/7.x
git push upstream mergify/bp/7.x/pr-28253

@andresrc andresrc changed the base branch from 7.x to 7.16 October 20, 2021 14:49
@andresrc andresrc changed the title [7.x](backport #28253) Remove GCP support from Functionbeat [7.16](backport #28253) Remove GCP support from Functionbeat Oct 20, 2021
@kvch kvch force-pushed the mergify/bp/7.x/pr-28253 branch from 0e4aab2 to 7c391f2 Compare October 25, 2021 10:14
@kvch kvch merged commit 61452a8 into 7.16 Oct 25, 2021
@mergify mergify bot deleted the mergify/bp/7.x/pr-28253 branch October 25, 2021 11:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport conflicts There is a conflict in the backported pull request needs_team Indicates that the issue/PR needs a Team:* label

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants