Skip to content

Commit

Permalink
fix(ci): finally fixed kernel-testing related workflows.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Oct 4, 2023
1 parent 0cc5352 commit ba78ce5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,16 @@ jobs:
- name: Download matrix X64
uses: actions/download-artifact@v3
with:
name: matrix_master_X64.md
name: matrix_master_X64

- name: Download matrix ARM64
uses: actions/download-artifact@v3
with:
name: matrix_master_ARM64.md
name: matrix_master_ARM64

- name: Disable Table Of Content for matrixes pages
run: |
mv matrix_master_X64.md docs/matrix_X64.md
mv matrix_master_ARM64.md docs/matrix_ARM64.md
mv matrix_*.md docs/
sed -i '1s/^/---\nhide:\n- toc\n---\n\n/' docs/matrix_X64.md
sed -i '1s/^/---\nhide:\n- toc\n---\n\n/' docs/matrix_ARM64.md
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release-body-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ jobs:
- name: Download matrix X64
uses: actions/download-artifact@v3
with:
name: matrix_${{ github.event.release.tag_name }}_X64.md
name: matrix_${{ github.event.release.tag_name }}_X64

- name: Download matrix ARM64
uses: actions/download-artifact@v3
with:
name: matrix_${{ github.event.release.tag_name }}_ARM64.md
name: matrix_${{ github.event.release.tag_name }}_ARM64

# Steps:
# Remove everything after the table (ie: since the first line that starts with "# ",
Expand All @@ -95,8 +95,6 @@ jobs:
# Finally, merge them together
- name: Append matrixes to create release body
run: |
mv matrix_${{ github.event.release.tag_name }}_X64.md matrix_X64.md
mv matrix_${{ github.event.release.tag_name }}_ARM64.md matrix_ARM64.md
sed -i -n '/# /q;p' matrix_X64.md
sed -i -n '/# /q;p' matrix_ARM64.md
sed -i 's/\[\(.\)\]([^)]*)/\1/g' matrix_X64.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_kernel_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: matrix_${{ inputs.libsversion }}_${{matrix.architecture}}.md
name: matrix_${{ inputs.libsversion }}_${{matrix.architecture}}
path: ./matrix_gen/matrix_${{matrix.architecture}}.md

- name: Cleanup
Expand Down

0 comments on commit ba78ce5

Please sign in to comment.