mirror of
https://github.com/qbittorrent/docker-qbittorrent-nox.git
synced 2024-11-23 01:09:41 +00:00
Add support for 386 architecture
This commit is contained in:
parent
a9d8a19ce6
commit
976f7492da
5
.github/workflows/alpha.yaml
vendored
5
.github/workflows/alpha.yaml
vendored
@ -27,11 +27,6 @@ jobs:
|
||||
run: |
|
||||
echo "PLATFORM_NAME=${{ matrix.platform }}" | sed 's|/|-|g' >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
with:
|
||||
platforms: ${{ matrix.platform }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
|
5
.github/workflows/ci.yaml
vendored
5
.github/workflows/ci.yaml
vendored
@ -27,11 +27,6 @@ jobs:
|
||||
run: |
|
||||
echo "PLATFORM_NAME=${{ matrix.platform }}" | sed 's|/|-|g' >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
with:
|
||||
platforms: ${{ matrix.platform }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
|
6
.github/workflows/release.yaml
vendored
6
.github/workflows/release.yaml
vendored
@ -21,6 +21,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
platform:
|
||||
- "linux/386"
|
||||
- "linux/amd64"
|
||||
- "linux/arm/v6"
|
||||
- "linux/arm/v7"
|
||||
@ -37,6 +38,7 @@ jobs:
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
if: (matrix.platform != "linux/386") && (matrix.platform != "linux/amd64")
|
||||
with:
|
||||
platforms: ${{ matrix.platform }}
|
||||
|
||||
@ -137,24 +139,28 @@ jobs:
|
||||
run: |
|
||||
docker manifest create \
|
||||
qbittorrentofficial/qbittorrent-nox:${{ env.QBT_VERSION }}-${{ env.TAG_RELEASE_NUMBER }} \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-386 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-amd64 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-arm-v6 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-arm-v7 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-arm64-v8
|
||||
docker manifest create \
|
||||
qbittorrentofficial/qbittorrent-nox:latest \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-386 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-amd64 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-arm-v6 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-arm-v7 \
|
||||
--amend qbittorrentofficial/qbittorrent-nox:latest-linux-arm64-v8
|
||||
docker manifest create \
|
||||
ghcr.io/qbittorrent/docker-qbittorrent-nox:${{ env.QBT_VERSION }}-${{ env.TAG_RELEASE_NUMBER }} \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-386 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-amd64 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-arm-v6 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-arm-v7 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-arm64-v8
|
||||
docker manifest create \
|
||||
ghcr.io/qbittorrent/docker-qbittorrent-nox:latest \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-386 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-amd64 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-arm-v6 \
|
||||
--amend ghcr.io/qbittorrent/docker-qbittorrent-nox:latest-linux-arm-v7 \
|
||||
|
Loading…
Reference in New Issue
Block a user