Skip to content

Commit ed3d0bc

Browse files
committed
fix
1 parent 22f21ee commit ed3d0bc

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/package.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
sudo apt-get install -y ./rex-dkms*_all.deb \
3939
|| ( find /var/lib/dkms -name make.log -exec cat '{}' \; && false )
4040
41-
# libbpf 1.3+ is requred for functional tests
41+
# libbpf 1.3+ is required for functional tests
4242
build_libbpf:
4343
runs-on: ubuntu-22.04
4444
steps:
@@ -89,13 +89,18 @@ jobs:
8989
cd libbpf
9090
sudo dpkg -i ./libbpf-dev* ./libbpf1_*
9191
92+
# Compiling Hyperscan with unlimited jobs may hang. Don't let it overcome
93+
# cpu constraints.
9294
- run: |
9395
echo "nproc=$(nproc)" >> $GITHUB_ENV
9496
9597
- name: build package
9698
run: |
9799
dpkg-buildpackage -j${{env.nproc}} -b --no-sign
98-
mv ../libhyperscan*.deb ../libhyperscan*.ddeb .
100+
101+
- name: copy build artifacts
102+
run: |
103+
mv ../libhyperscan*.deb
99104
100105
- name: upload package artifacts
101106
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)