added armv7h support to shadowsocks
Some checks failed
CI / Build shadowsocks-rust docker images (push) Failing after 16s

This commit is contained in:
2024-06-25 09:42:20 +08:00
parent 62921644ae
commit 88ce5ef083
2 changed files with 3 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ jobs:
platforms: |
linux/amd64
linux/arm64
linux/arm/v7
push: true
tags: |
"gitea.woggioni.net/woggioni/sserver-rust:latest"

View File

@@ -1,9 +1,9 @@
FROM --platform=$TARGETPLATFORM rust:alpine AS builder
FROM --platform=$TARGETPLATFORM alpine:latest AS builder
ARG VERSION TARGETPLATFORM
RUN set -x \
&& apk add --no-cache build-base cmake llvm15-dev clang15-libclang clang15 rust-bindgen git
&& apk add --no-cache build-base cmake llvm15-dev clang15-libclang clang15 rust-bindgen git rustup
WORKDIR /root/shadowsocks-rust