Skip to content

Commit

Permalink
Fix packaging workflow on AL2023 (#741)
Browse files Browse the repository at this point in the history
It sets a much higher ulimit for open files, and that seems to interact
badly with `yum` on Centos 7. The net result is that our packaging
workflow takes hours

Signed-off-by: James Bornholt <[email protected]>
  • Loading branch information
jamesbornholt authored Feb 9, 2024
1 parent 61a0133 commit cfc11cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
with:
ref: ${{ inputs.ref }}
submodules: true
- name: Install nightly Rust
- name: Set up stable Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
with:
tags: mountpoint-builder
context: ./package
# https://github.com/docker/buildx/issues/379
ulimit: nofile=100000
- name: Package an unofficial release
run: docker run --mount type=bind,source=$(pwd),target=/mountpoint mountpoint-builder
- name: Check release binary
Expand Down

0 comments on commit cfc11cd

Please sign in to comment.