Do not limit jobs
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is failing

This commit is contained in:
Austen Adler 2022-12-25 18:29:43 -05:00
parent 279092951b
commit e9b30934ac

View File

@ -41,13 +41,13 @@ build:
COPY ./Cargo.toml ./Cargo.lock .
RUN \
mkdir src && touch src/lib.rs && \
cargo build --offline --release --target "$TOOLCHAIN" --jobs 1 && \
cargo build --offline --release --target "$TOOLCHAIN" `#--jobs 1` && \
rm src/lib.rs && rmdir src && \
:
# Actually build the program
COPY . .
RUN cargo build --offline --release --target "$TOOLCHAIN" --jobs 1
RUN cargo build --offline --release --target "$TOOLCHAIN" `#--jobs 1`
ARG EXT
ARG STRIP_CMD