Skip to content

Commit 7361ab4

Browse files
authored
Merge pull request #3850 from stacks-network/feat/stacks-signer
Feat/stacks signer
2 parents f669ced + 904c7ab commit 7361ab4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+6769
-813
lines changed

.github/actions/bitcoin-int-tests/Dockerfile.large-genesis

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ WORKDIR /src
44

55
COPY . .
66

7+
RUN apt-get update && apt-get install -y libclang-dev
8+
79
RUN cd / && wget https://bitcoin.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz
810
RUN cd / && tar -xvzf bitcoin-25.0-x86_64-linux-gnu.tar.gz
911

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

1214
RUN rustup component add llvm-tools-preview && \
15+
rustup component add rustfmt && \
1316
cargo install grcov
1417

1518
ENV RUSTFLAGS="-Cinstrument-coverage" \

.github/actions/dockerfiles/Dockerfile.debian-source

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ WORKDIR /src
99

1010
COPY . .
1111

12-
RUN apt-get update && apt-get install -y git
12+
RUN apt-get update && apt-get install -y git libclang-dev
1313

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

0 commit comments

Comments
 (0)