1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-01-01 08:14:27 +01:00

Merge branch 'valkum-master-patch-62987' into 'master'

Fix Complement CI paths

See merge request famedly/conduit!36
This commit is contained in:
Timo Kösters 2021-03-04 17:51:52 +00:00
commit 3436e844c2

View file

@ -9,7 +9,9 @@ ARG SCCACHE_ENDPOINT
ARG SCCACHE_S3_USE_SSL
COPY . .
RUN test -e cached_target/release/conduit || cargo build --release
RUN mkdir -p target/release
RUN test -e cached_target/release/conduit && cp cached_target/release/conduit target/release/conduit || cargo build --release
FROM valkum/docker-rust-ci:latest
WORKDIR /workdir