Skip to content

Commit

Permalink
fix rpm packaging (#376)
Browse files Browse the repository at this point in the history
Increase the size of the buildjet worker for RPM packaging to
prevent failure due to OOM.
  • Loading branch information
brayniac authored Nov 26, 2024
1 parent e2bc75d commit 3e38e7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ env:
jobs:
build-deb:
name: "${{ matrix.distro }}:${{ matrix.release }}"
runs-on: ${{ matrix.arch == 'arm64' && 'buildjet-16vcpu-ubuntu-2204-arm' || 'buildjet-8vcpu-ubuntu-2204' }}
runs-on: buildjet-16vcpu-ubuntu-2204${{ matrix.arch == 'arm64' && '-arm' || '' }}
container: "${{ matrix.distro }}:${{ matrix.release }}"
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ env:
jobs:
build-rpm:
name: "${{ matrix.distro }}:${{ matrix.version }} (${{ matrix.arch }})"
runs-on: buildjet-8vcpu-ubuntu-2204${{ matrix.arch == 'arm64' && '-arm' || '' }}
runs-on: buildjet-16vcpu-ubuntu-2204${{ matrix.arch == 'arm64' && '-arm' || '' }}
container: "${{ matrix.distro }}:${{ matrix.version }}"
strategy:
matrix:
Expand Down

0 comments on commit 3e38e7a

Please sign in to comment.