Skip to content

Commit

Permalink
download reports and mo-data
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosyrain committed Nov 26, 2024
1 parent fdb93ab commit dc535f0
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/e2e-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,34 @@ jobs:
mv ${{ github.workspace }}/workspace ${{ github.workspace }}/upload/
mv ${{ github.workspace }}/mo-tester ${{ github.workspace }}/upload/
#拆分上传
mkdir -p ${{ github.workspace }}/upload-1
mkdir -p ${{ github.workspace }}/upload-2
mv $GITHUB_WORKSPACE/upload/mo-tester/report $GITHUB_WORKSPACE/upload-1/
mv $GITHUB_WORKSPACE/upload/workspace/mo-service.log $GITHUB_WORKSPACE/upload-1/
mv $GITHUB_WORKSPACE/upload/workspace/upstream-mo-service.log $GITHUB_WORKSPACE/upload-1/
mv $GITHUB_WORKSPACE/upload/workspace/mo-service $GITHUB_WORKSPACE/upload-2/
mv $GITHUB_WORKSPACE/upload/workspace/mo-service-upstream $GITHUB_WORKSPACE/upload-2/
mv $GITHUB_WORKSPACE/upload/workspace/mo-data $GITHUB_WORKSPACE/upload-2/
- uses: actions/upload-artifact@v4
if: ${{ failure() || cancelled()}}
continue-on-error: true
with:
name: Compatibility-Test-Target-on-Linux-x64(LAUNCH)-reports
path: |
${{ github.workspace }}/upload
${{ github.workspace }}/upload-1
retention-days: 7

- uses: actions/upload-artifact@v4
if: ${{ failure() || cancelled()}}
continue-on-error: true
with:
name: Compatibility-Test-Target-on-Linux-x64(LAUNCH)-mo-data
path: |
${{ github.workspace }}/upload-2
retention-days: 7

upgrade-ci-release-linux-amd64:
Expand Down

0 comments on commit dc535f0

Please sign in to comment.