Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ runs:
run: |
env > "${{ github.action_path }}/env_file"
sed -i "/\(HOME\|TERM\|PWD\|HOSTNAME\|PATH\|SHLVL\|USER\|GOROOT\)/d" "${{ github.action_path }}/env_file"
# Work around QEMU aarch64 bugs
# https://github.com/tonistiigi/binfmt/issues/215#issuecomment-2613567455
sudo sysctl kernel.randomize_va_space=0
docker run --rm --privileged \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
Expand All @@ -55,6 +58,8 @@ runs:
ghcr.io/home-assistant/amd64-builder:${{ steps.version.outputs.version }} \
${{ inputs.args }}
sudo sysctl kernel.randomize_va_space=2
- shell: bash
id: verify
run: |
Expand Down