Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[build] Add workflow for generating CI report in main branch #1284

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/rawWorkflows/gh-ci-completion-flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
jdk: [17]
runs-on: ubuntu-latest
needs: $Dependency
if: $Conditional
if: ${{ always() && !failure() }}
timeout-minutes: $TimeOut
steps:
- name: NoOp
Expand Down
5 changes: 2 additions & 3 deletions .github/rawWorkflows/gh-ci-parameterized-flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@
run: |
mkdir ${{ github.job }}-artifacts
echo "Repository owner: ${{ github.repository_owner }}"
echo "Repository name: ${{ github.repository }}"
echo "event name: ${{ github.event_name }}"
find . -path "**/build/reports/*" -or -path "**/build/test-results/*" > artifacts.list
rsync -R --files-from=artifacts.list . ${{ github.job }}-artifacts
tar -zcvf ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz ${{ github.job }}-artifacts
- name: Generate Fork Repo Test Reports
if: ${{ (github.repository_owner != 'linkedin') && (success() || failure()) }}
- name: Generate Test Reports
$TestIfStatement
uses: dorny/[email protected]
env:
NODE_OPTIONS: --max-old-space-size=9182
Expand Down
Loading