Edit

kc3-lang/angle/tools/angle_tools.py

Branch :

  • Show log

    Commit

  • Author : Shahbaz Youssefi
    Date : 2019-11-25 15:19:52
    Hash : 7012250a
    Message : Infrastructure for uploading flex/bison binaries The binaries are retrieved from MSys2 on windows and built from source on Linux. Updates to these binaries should be infrequent enough to not warrant a completely automated system. Bug: angleproject:3419 Change-Id: I282f9ca14059d1fe0d88f2ffd31d02df0ea6b88f Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1940571 Reviewed-by: Jonah Ryan-Davis <jonahr@google.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>

  • tools/angle_tools.py
  • #!/usr/bin/python2
    #
    # Copyright 2019 The ANGLE Project Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style license that can be
    # found in the LICENSE file.
    #
    # angle_tools.py:
    #   Common functionality to scripts in angle/tools directory.
    
    import os
    import platform
    import subprocess
    
    is_windows = platform.system() == 'Windows'
    is_linux = platform.system() == 'Linux'
    
    
    def find_file_in_path(filename):
        """ Finds |filename| by searching the environment paths """
        path_delimiter = ';' if is_windows else ':'
        for env_path in os.environ['PATH'].split(path_delimiter):
            full_path = os.path.join(env_path, filename)
            if os.path.isfile(full_path):
                return full_path
        raise Exception('Cannot find %s in environment' % filename)
    
    
    def get_exe_name(file_name, windows_extension):
        exe_name = file_name
        if is_windows:
            exe_name += windows_extension
        return exe_name
    
    
    def upload_to_google_storage(bucket, files):
        upload_script = find_file_in_path('upload_to_google_storage.py')
        upload_args = ['python', upload_script, '-b', bucket] + files
        return subprocess.call(upload_args) == 0
    
    
    def stage_google_storage_sha1(files):
        git_exe = get_exe_name('git', '.bat')
        git_exe = find_file_in_path(git_exe)
    
        sha1_files = [f + '.sha1' for f in files]
        return subprocess.call([git_exe, 'add'] + sha1_files) == 0