mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
ci: clone dash_hash at a specific tag (#5369)
## Issue being fixed or feature implemented should fix ci failures like https://gitlab.com/dashpay/dash/-/jobs/4261565118 in #5291 ## What was done? Use the exact dash_hash version/tag instead of simply using `master`. Bumping `DASH_HASH_VERSION` invalidates docker cache. ## How Has This Been Tested? Ran it in my gitlab ci ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
This commit is contained in:
parent
e78ce77ee6
commit
6542ea53eb
@ -43,7 +43,8 @@ RUN pip3 install \
|
|||||||
multiprocess
|
multiprocess
|
||||||
|
|
||||||
# dash_hash
|
# dash_hash
|
||||||
RUN git clone --depth 1 --no-tags https://github.com/dashpay/dash_hash
|
ARG DASH_HASH_VERSION=1.4.0
|
||||||
|
RUN git clone --depth 1 --no-tags --branch=${DASH_HASH_VERSION} https://github.com/dashpay/dash_hash
|
||||||
RUN cd dash_hash && python3 setup.py install
|
RUN cd dash_hash && python3 setup.py install
|
||||||
|
|
||||||
ARG USER_ID=1000
|
ARG USER_ID=1000
|
||||||
|
Loading…
Reference in New Issue
Block a user