mirror of
https://github.com/mentos1386/dotfiles.git
synced 2025-01-31 00:35:42 +00:00
feat: remove 32bit support
This commit is contained in:
parent
b67c6fc3cb
commit
1c6e384941
4 changed files with 6 additions and 5 deletions
2
.github/workflows/fedora.yaml
vendored
2
.github/workflows/fedora.yaml
vendored
|
@ -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
|
||||||
|
|
|
@ -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"
|
2
.github/workflows/ubuntu.yaml
vendored
2
.github/workflows/ubuntu.yaml
vendored
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue