Skip to content

Commit aa29fda

Browse files
committed
feat: add HIP report generation functionality and related dependencies
1 parent f398cca commit aa29fda

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2152
-783
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,14 @@ jobs:
164164
-v $(pwd)/build-gp-${{ matrix.package }}:/workspace \
165165
yuezk/gpdev:${{ matrix.package }}-builder-tauri2 \
166166
bash install.sh
167-
# Don't upload package for ubuntu-rolling because it's duplicate of deb package
167+
- name: Rename the old deb package with libxml2 suffix
168+
if: ${{ matrix.package == 'deb' }}
169+
run: |
170+
cd build-gp-deb/artifacts
171+
for file in *.deb; do
172+
mv "$file" "${file%.deb}-libxml2.deb"
173+
done
168174
- name: Upload ${{ matrix.package }} package
169-
if: ${{ matrix.package != 'ubuntu-rolling' }}
170175
uses: actions/upload-artifact@v4
171176
with:
172177
name: artifact-gp-${{ matrix.package }}-${{ matrix.os.arch }}

0 commit comments

Comments
 (0)