Skip to content

Commit

Permalink
Rename test artifacts archive and the script that creates it
Browse files Browse the repository at this point in the history
  • Loading branch information
oxve committed Jan 19, 2025
1 parent ef8c2ad commit 8da2938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/upload_test_artifacts/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }} \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<target_name>_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 `<target_name>_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(
Expand Down

0 comments on commit 8da2938

Please sign in to comment.