Skip to content

Commit c82a3a1

Browse files
authored
Coverage-reports from Gitlab are now found and combined (#478)
* Unzip artifacts from Gitlab-CI * Corrected wrong rm-command * Unzipped files are located somewhere else not in pwd * Another try for extraction and commented out other long-running jobs in CI (will be added at the end) * Search newly created directories * Accidentally commited some weird char * Moved file-listing and changed find-command * Struggling with find-command * Pass files separately to unzip * Corrected order of unzip * termination need to be properly escaped * Explicitly uploading the unzipped artifacts * Run all jobs again
1 parent fabd036 commit c82a3a1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/gitlab_ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,22 @@ jobs:
115115
GITLAB_PROJECT_ID: "6029"
116116
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117117
MIRROR_BRANCH: ${{ env.MIRROR_BRANCH }}
118+
- name: Unzip downloaded artifacts
119+
run: |
120+
pwd
121+
ls -lah
122+
cd artifacts
123+
find . -name "*.zip" -type f -exec unzip -o {} \;
124+
ls -lah
125+
rm *.zip
126+
cd ..
127+
ls -lah
128+
- name: Uploading artifacts
129+
uses: actions/upload-artifact@v4
130+
with:
131+
name: Gitlab-Action_artifacts
132+
path: |
133+
./artifacts/*
118134
119135
get_artifacts_from_other_workflow:
120136
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)