diff --git a/.github/actions/upload_test_artifacts/action.yaml b/.github/actions/upload_test_artifacts/action.yaml index 3095e52768c..a2a645aea29 100644 --- a/.github/actions/upload_test_artifacts/action.yaml +++ b/.github/actions/upload_test_artifacts/action.yaml @@ -36,7 +36,7 @@ runs: set -x mkdir ${GITHUB_WORKSPACE}/artifacts cd src/ - ./cobalt/build/create_archive.py \ + ./cobalt/build/archive_test_artifacts.py \ --source out/${{ matrix.platform }}_${{ matrix.config }}/ \ --destination ${GITHUB_WORKSPACE}/artifacts \ --platform ${{ matrix.platform }} \ diff --git a/cobalt/build/create_archive.py b/cobalt/build/archive_test_artifacts.py similarity index 93% rename from cobalt/build/create_archive.py rename to cobalt/build/archive_test_artifacts.py index 1d876346bfc..711f7bb2734 100755 --- a/cobalt/build/create_archive.py +++ b/cobalt/build/archive_test_artifacts.py @@ -77,7 +77,7 @@ def create_archive(targets: List[str], source_dir: str, destination_dir: str, _make_tar(output_path, deps) if combine: - output_path = os.path.join(destination_dir, 'artifacts.tar.gz') + output_path = os.path.join(destination_dir, 'test_artifacts.tar.gz') _make_tar(output_path, deps) @@ -93,9 +93,9 @@ def create_archive(targets: List[str], source_dir: str, destination_dir: str, '-d', '--destination-dir', required=True, - help='The output directory. If -u is passed the filename is ' - 'artifacts.tar.gz, else a `_runtime_deps.tar.gz` is created ' - 'for each target passed.') + help='The output directory. For linux test_artifacts.tar.gz is created ' + 'with all test artifacts, else a `_runtime_deps.tar.gz` is ' + 'created for each target passed.') parser.add_argument( '-p', '--platform', required=True, help='The platform getting packaged.') parser.add_argument(