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
|
||||
run: |
|
||||
DOCKER_IMAGE=ghcr.io/mentos1386/env-fedora
|
||||
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64
|
||||
DOCKER_PLATFORMS=linux/amd64,linux/arm64
|
||||
VERSION=edge
|
||||
|
||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
||||
|
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
id: prepare
|
||||
run: |
|
||||
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
|
||||
|
||||
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
|
||||
run: |
|
||||
DOCKER_IMAGE=ghcr.io/mentos1386/env-ubuntu
|
||||
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64
|
||||
DOCKER_PLATFORMS=linux/amd64,linux/arm64
|
||||
VERSION=edge
|
||||
|
||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
||||
|
|
|
@ -7,8 +7,9 @@ WORKDIR /usr/src/starship
|
|||
|
||||
ARG VERSION=0.47.0
|
||||
|
||||
RUN git clone https://github.com/starship/starship.git . \
|
||||
&& git checkout tags/v$VERSION
|
||||
RUN git clone https://github.com/starship/starship.git \
|
||||
--branch v$VERSION \
|
||||
--depth 1 .
|
||||
|
||||
RUN cargo build --release
|
||||
|
||||
|
|
Loading…
Reference in a new issue