Changeset 271801 in webkit


Ignore:
Timestamp:
Jan 25, 2021 10:52:52 AM (3 years ago)
Author:
aakash_jain@apple.com
Message:

layout-test results shouldn't be hosted on build.webkit.org server
https://bugs.webkit.org/show_bug.cgi?id=220864

Reviewed by Jonathan Bedard.

  • CISupport/build-webkit-org/steps.py:

(ExtractTestResults.resultDirectoryURL):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/CISupport/build-webkit-org/steps.py

    r271366 r271801  
    1 # Copyright (C) 2017-2020 Apple Inc. All rights reserved.
     1# Copyright (C) 2017-2021 Apple Inc. All rights reserved.
    22#
    33# Redistribution and use in source and binary forms, with or without
     
    3838RESULTS_WEBKIT_URL = 'https://results.webkit.org'
    3939RESULTS_SERVER_API_KEY = 'RESULTS_SERVER_API_KEY'
    40 S3URL = "https://s3-us-west-2.amazonaws.com/"
     40S3URL = 'https://s3-us-west-2.amazonaws.com/'
     41S3_RESULTS_URL = '{}build.webkit.org-results/'.format(S3URL)
    4142USE_BUILDBOT_VERSION2 = os.getenv('USE_BUILDBOT_VERSION2') is not None
    4243WithProperties = properties.WithProperties
     
    12751276    def resultDirectoryURL(self):
    12761277        if USE_BUILDBOT_VERSION2:
    1277             return self.resultDirectory.replace('public_html/', '/') + '/'
     1278            path = self.resultDirectory.replace('public_html/results/', '') + '/'
     1279            return '{}{}'.format(S3_RESULTS_URL, path)
    12781280        else:
    12791281            return self.build.getProperties().render(self.resultDirectory).replace('public_html/', '/') + '/'
  • trunk/Tools/ChangeLog

    r271799 r271801  
     12021-01-25  Aakash Jain  <aakash_jain@apple.com>
     2
     3        layout-test results shouldn't be hosted on build.webkit.org server
     4        https://bugs.webkit.org/show_bug.cgi?id=220864
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * CISupport/build-webkit-org/steps.py:
     9        (ExtractTestResults.resultDirectoryURL):
     10
    1112021-01-25  John Wilander  <wilander@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.