Skip to content

Commit

Permalink
Merge pull request #3911 from stacks-network/chore/port-dkg-signer-first
Browse files Browse the repository at this point in the history
Implement full DkgSign over StackerDB
  • Loading branch information
xoloki committed Sep 18, 2023
2 parents 3a998f6 + 99c1218 commit 5dee84f
Show file tree
Hide file tree
Showing 34 changed files with 3,674 additions and 298 deletions.
3 changes: 3 additions & 0 deletions .github/actions/bitcoin-int-tests/Dockerfile.large-genesis
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ WORKDIR /src

COPY . .

RUN apt-get update && apt-get install -y libclang-dev

RUN cd / && wget https://bitcoin.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz
RUN cd / && tar -xvzf bitcoin-25.0-x86_64-linux-gnu.tar.gz

RUN ln -s /bitcoin-25.0/bin/bitcoind /bin/

RUN rustup component add llvm-tools-preview && \
rustup component add rustfmt && \
cargo install grcov

ENV RUSTFLAGS="-Cinstrument-coverage" \
Expand Down
5 changes: 3 additions & 2 deletions .github/actions/dockerfiles/Dockerfile.debian-source
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ WORKDIR /src

COPY . .

RUN apt-get update && apt-get install -y git
RUN apt-get update && apt-get install -y git libclang-dev

# Run all the build steps in ramdisk in an attempt to speed things up
RUN --mount=type=tmpfs,target=${BUILD_DIR} cp -R /src/. ${BUILD_DIR}/ \
RUN target=${BUILD_DIR} cp -R /src/. ${BUILD_DIR}/ \
&& cd ${BUILD_DIR} \
&& rustup target add ${TARGET} \
&& rustup component add rustfmt \
&& cargo build --features monitoring_prom,slog_json --release --workspace --target ${TARGET} \
&& mkdir -p /out \
&& cp -R ${BUILD_DIR}/target/${TARGET}/release/. /out
Expand Down
Loading

0 comments on commit 5dee84f

Please sign in to comment.