Skip to content

Commit

Permalink
Merge pull request #2 from fwcd/archlinux32
Browse files Browse the repository at this point in the history
Build Arch Linux 32 images
  • Loading branch information
fwcd committed Aug 31, 2023
2 parents e4eb70e + 2f2ec1e commit 1f36d95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7 # TODO: 32-bit x86 (linux/386)
platforms: linux/386,linux/amd64,linux/arm64,linux/arm/v7
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ steps.tags.outputs.NAME }}:latest,${{ steps.tags.outputs.NAME }}:${{ steps.tags.outputs.DATE }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Unofficial, automated Docker multi-platform images of Arch Linux for the followi
| x86_64 | `linux/amd64` | [Arch Linux](https://archlinux.org) |
| aarch64 | `linux/arm64` | [Arch Linux ARM](https://archlinuxarm.org) |
| armv7h | `linux/arm/v7` | [Arch Linux ARM](https://archlinuxarm.org) |
| pentium4 | `linux/386` | [Arch Linux 32](https://archlinux32.org) |
2 changes: 1 addition & 1 deletion rootfs/386/etc/pacman.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ HoldPkg = pacman glibc
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
Architecture = auto
Architecture = pentium4

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg =
Expand Down
2 changes: 1 addition & 1 deletion rootfs/amd64/etc/pacman.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ HoldPkg = pacman glibc
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
Architecture = auto
Architecture = x86_64

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg =
Expand Down

0 comments on commit 1f36d95

Please sign in to comment.