ci: docker_tag=ext - Use sdk_common from git repository with panic fix
Some checks failed
build-and-push-ext / build_push (push) Failing after 6s

This commit is contained in:
4NK Dev 2025-09-20 01:37:28 +00:00
parent 81cf08f7b3
commit fcd3477582
2 changed files with 4 additions and 3 deletions

View File

@ -11,7 +11,7 @@ env_logger = "0.9"
futures-util = { version = "0.3.28", default-features = false, features = ["sink", "std"] }
hex = "0.4.3"
log = "0.4.20"
sdk_common = { git = "https://git.4nkweb.com/4nk/sdk_common.git", branch = "dev", features = ["parallel", "blindbit-backend"] }
sdk_common = { path = "../sdk_common", features = ["parallel", "blindbit-backend"] }
serde = { version = "1.0.193", features = ["derive"]}
serde_json = "1.0"
serde_with = "3.6.0"

View File

@ -7,8 +7,9 @@ RUN mkdir -p /root/.ssh && \
ssh-keyscan git.4nkweb.com >> /root/.ssh/known_hosts
# Copie des fichiers de sdk_relay
COPY Cargo.toml Cargo.lock ./
COPY src/ src/
COPY sdk_relay/Cargo.toml sdk_relay/Cargo.lock ./
COPY sdk_relay/src/ src/
COPY sdk_common /sdk_common
# Build avec support SSH pour récupérer les dépendances
RUN --mount=type=ssh cargo build --release