Skip to content

Commit

Permalink
Merge pull request #1600 from pi-hole/dev
Browse files Browse the repository at this point in the history
dev -> Master
  • Loading branch information
PromoFaux committed Jun 16, 2024
2 parents f77e922 + f60e958 commit 4149693
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge-conflict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check if PRs are have merge conflicts
uses: eps1lon/actions-label-merge-conflict@v3.0.1
uses: eps1lon/actions-label-merge-conflict@v3.0.2
with:
dirtyLabel: "Merge Conflict"
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
12 changes: 9 additions & 3 deletions src/s6/debian-root/usr/local/bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ detect_arch() {
S6_ARCH="armhf";;
armv7l)
S6_ARCH="armhf";;
i386)
S6_ARCH="i686";;
esac
x86_64)
# arch returns x86_64 on linux/i386, causing the wrong s6-overlay to be downloaded
# fallback to dpkg to check the architecture and download the i686 s6-overlay if necessary
# see https://github.com/pi-hole/docker-pi-hole/issues/1524 for more information
ARCH_CHECK=$(dpkg --print-architecture)
if [ "$ARCH_CHECK" == "i386" ]; then
S6_ARCH="i686"
fi
esac
}


Expand Down
4 changes: 2 additions & 2 deletions test/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ verify_ssl = true
[dev-packages]

[packages]
pytest = "==8.2.1"
pytest = "==8.2.2"
pytest-xdist = "==3.6.1"
pytest-testinfra = "==10.1.0"
pytest-testinfra = "==10.1.1"
black = "==24.4.2"

[requires]
Expand Down
14 changes: 7 additions & 7 deletions test/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4149693

Please sign in to comment.