-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore cache directory and target-* files #206
Conversation
@@ -13,3 +13,5 @@ target-bin/bootstrap-fixup | |||
.vagrant | |||
docker | |||
*.Dockerfile | |||
cache | |||
target-* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK cache
, why target-*
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fanquake
It creates (particularly using LXC) two files:
gitian-builder/bin/make-base-vm
Line 117 in 4053f3c
OUT=base-$SUITE-$ARCH |
gitian-builder/libexec/make-clean-vm
Line 57 in 3934150
OUT=target-$SUITE-$ARCH |
base-bionic-amd64
and target-bionic-amd64
.
The former is ignored already:
Line 9 in 27d0130
base* |
The latter (target-*
or target*
) should be ignored too.
4eda053 Ignore cache directory and target-* files (Hennadii Stepanov)
Summary: This fixes an issue introduced by devrandom/gitian-builder#206. The `target-*` pattern not only matches the target image name but also the `target-bin` directory which contains useful files. This allows for adding the missing files as well. Depends on D6972. Test Plan: NOP() Reviewers: #bitcoin_abc, deadalnix Reviewed By: #bitcoin_abc, deadalnix Subscribers: deadalnix Differential Revision: https://reviews.bitcoinabc.org/D6973
Summary: This fixes an issue introduced by devrandom/gitian-builder#206. The `target-*` pattern not only matches the target image name but also the `target-bin` directory which contains useful files. This allows for adding the missing files as well. Depends on D6972. Test Plan: NOP() Reviewers: #bitcoin_abc, deadalnix Reviewed By: #bitcoin_abc, deadalnix Subscribers: deadalnix Differential Revision: https://reviews.bitcoinabc.org/D6973
No description provided.