devops: remove redundant files (#30521)
This commit is contained in:
parent
d5ade91a92
commit
c9e4c49c2f
2
.github/actions/download-artifact/action.yml
vendored
2
.github/actions/download-artifact/action.yml
vendored
|
|
@ -34,7 +34,7 @@ runs:
|
|||
artifact_id: artifact.id,
|
||||
archive_format: 'zip'
|
||||
});
|
||||
console.log('downloaded artifact', result);
|
||||
console.log(`Downloaded ${artifact.name}.zip (${result.data.byteLength} bytes)`);
|
||||
fs.writeFileSync(`${{ inputs.path }}/artifacts/${artifact.name}.zip`, Buffer.from(result.data));
|
||||
}
|
||||
- name: Unzip artifacts
|
||||
|
|
|
|||
|
|
@ -1,26 +0,0 @@
|
|||
name: 'Download blob report from Azure'
|
||||
description: 'Download blob report from Azure blob storage'
|
||||
inputs:
|
||||
blob_prefix:
|
||||
description: 'Name of the Azure blob storage directory containing blob report'
|
||||
required: true
|
||||
output_dir:
|
||||
description: 'Output directory where downloaded blobs will be stored'
|
||||
required: true
|
||||
default: 'blob-report'
|
||||
connection_string:
|
||||
description: 'Azure connection string'
|
||||
required: true
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Download Blob Reports from Azure Blob Storage
|
||||
shell: bash
|
||||
run: |
|
||||
OUTPUT_DIR='${{ inputs.output_dir }}'
|
||||
mkdir -p $OUTPUT_DIR
|
||||
LIST=$(az storage blob list -c '$web' --prefix ${{ inputs.blob_prefix }} --connection-string "${{ inputs.connection_string }}")
|
||||
for name in $(echo $LIST | jq --raw-output '.[].name | select(test("report-.*\\.zip$"))');
|
||||
do
|
||||
az storage blob download -c '$web' --name $name -f $OUTPUT_DIR/$(basename $name) --connection-string "${{ inputs.connection_string }}"
|
||||
done
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "playwright-chromium",
|
||||
"version": "1.0.0",
|
||||
"description": "A high-level API to automate web browsers",
|
||||
"repository": "github:Microsoft/playwright",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "playwright-core",
|
||||
"version": "1.0.0",
|
||||
"description": "A high-level API to automate web browsers",
|
||||
"repository": "github:Microsoft/playwright",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "playwright-firefox",
|
||||
"version": "1.0.0",
|
||||
"description": "A high-level API to automate web browsers",
|
||||
"repository": "github:Microsoft/playwright",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "@playwright/test",
|
||||
"version": "1.0.0",
|
||||
"description": "A high-level API to automate web browsers",
|
||||
"repository": "github:Microsoft/playwright",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "playwright-webkit",
|
||||
"version": "1.0.0",
|
||||
"description": "A high-level API to automate web browsers",
|
||||
"repository": "github:Microsoft/playwright",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "playwright",
|
||||
"version": "1.0.0",
|
||||
"description": "A high-level API to automate web browsers",
|
||||
"repository": "github:Microsoft/playwright",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
Loading…
Reference in a new issue