feat: remove 32bit support

This commit is contained in:
Tine Jozelj 2020-12-22 21:23:51 +01:00
parent b67c6fc3cb
commit 1c6e384941
No known key found for this signature in database
GPG key ID: 3818B74E3830D7CF
4 changed files with 6 additions and 5 deletions

View file

@ -20,7 +20,7 @@ jobs:
id: prepare id: prepare
run: | run: |
DOCKER_IMAGE=ghcr.io/mentos1386/env-fedora DOCKER_IMAGE=ghcr.io/mentos1386/env-fedora
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64 DOCKER_PLATFORMS=linux/amd64,linux/arm64
VERSION=edge VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then if [[ $GITHUB_REF == refs/tags/* ]]; then

View file

@ -16,7 +16,7 @@ jobs:
id: prepare id: prepare
run: | run: |
DOCKER_IMAGE=ghcr.io/mentos1386/starship DOCKER_IMAGE=ghcr.io/mentos1386/starship
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64 DOCKER_PLATFORMS=linux/amd64,linux/arm64
VERSION=0.47.0 VERSION=0.47.0
TAGS="--tag ${DOCKER_IMAGE}:${VERSION} --tag ${DOCKER_IMAGE}:latest" TAGS="--tag ${DOCKER_IMAGE}:${VERSION} --tag ${DOCKER_IMAGE}:latest"

View file

@ -20,7 +20,7 @@ jobs:
id: prepare id: prepare
run: | run: |
DOCKER_IMAGE=ghcr.io/mentos1386/env-ubuntu DOCKER_IMAGE=ghcr.io/mentos1386/env-ubuntu
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64 DOCKER_PLATFORMS=linux/amd64,linux/arm64
VERSION=edge VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then if [[ $GITHUB_REF == refs/tags/* ]]; then

View file

@ -7,8 +7,9 @@ WORKDIR /usr/src/starship
ARG VERSION=0.47.0 ARG VERSION=0.47.0
RUN git clone https://github.com/starship/starship.git . \ RUN git clone https://github.com/starship/starship.git \
&& git checkout tags/v$VERSION --branch v$VERSION \
--depth 1 .
RUN cargo build --release RUN cargo build --release