This patch changes package name format to install.
Signed-off-by: Yelin Jeong <yelini.jeong@samsung.com>
package_path:
description: path of npu-engine packages
required: true
- default: /tmp/debs/npu-engine*.deb
+ default: /tmp/debs/*.deb
mode:
description: mode of meson test
required: false
run: |
ulimit -c unlimited
debuild -us -uc
- mv ../npu-engine*deb .
+ mv ../*deb .
- name: Upload packages to Github
uses: CODE-Actions/upload-artifact@v2
with:
name: debian packages for Bionic
- path: npu-engine*.deb
+ path: "*.deb"
- name: Upload packages to Artifactory
shell: bash
run: |
- for FILE in `find . -name "npu-engine*.deb" -type f -exec basename {} \;`; do \
+ for FILE in `find . -name "*.deb" -type f -exec basename {} \;`; do \
curl \
--header "X-Checksum-MD5:`md5sum $FILE | awk '{ print $1 }'`" \
--header "X-Checksum-Sha1:`shasum -a 1 $FILE | awk '{ print $1 }'`" \
run: |
ulimit -c unlimited
debuild -us -uc
- mv ../npu-engine*deb .
+ mv ../*deb .
- name: Upload debian packages
uses: CODE-Actions/upload-artifact@v2
with:
name: debian packages for Focal
- path: npu-engine*.deb
+ path: "*.deb"
- name: Upload packages to Artifactory
shell: bash
run: |
- for FILE in `find . -name "npu-engine*.deb" -type f -exec basename {} \;`; do \
+ for FILE in `find . -name "*.deb" -type f -exec basename {} \;`; do \
curl \
--header "X-Checksum-MD5:`md5sum $FILE | awk '{ print $1 }'`" \
--header "X-Checksum-Sha1:`shasum -a 1 $FILE | awk '{ print $1 }'`" \
- name: Test using apptest
uses: ./.github/actions/test-ubuntu
with:
- package_path: /tmp/debs/npu-engine*.deb
+ package_path: /tmp/debs/*.deb
mode: --suite fast-test
- name: Uplaod meson test log if failed
if: ${{ failure() }}
with:
name: debian packages
path:
- /tmp/debs/npu-engine*.deb
+ /tmp/debs/*.deb
- name: Test using apptest
uses: ./.github/actions/test-ubuntu
with:
- package_path: /tmp/debs/npu-engine*.deb
+ package_path: /tmp/debs/*.deb
mode: --suite fast-test
- name: Uplaod meson test log if failed
if: ${{ failure() }}
with:
name: debian packages
path:
- /tmp/debs/npu-engine*.deb
+ /tmp/debs/*.deb
- name: Test using apptest
uses: ./.github/actions/test-ubuntu
with:
- package_path: /tmp/debs/npu-engine*.deb
+ package_path: /tmp/debs/*.deb
- name: Upload to artifactory
uses: ./.github/actions/upload-artifacts
with:
- name: Test using apptest
uses: ./.github/actions/test-ubuntu
with:
- package_path: /tmp/debs/npu-engine*.deb
+ package_path: /tmp/debs/*.deb
- name: Upload to artifactory
uses: ./.github/actions/upload-artifacts
with: