Back to stable for test image
This commit is contained in:
parent
52296b96c7
commit
036abd50ac
|
@ -63,7 +63,7 @@ jobs:
|
|||
- name: Run all tests
|
||||
run: |
|
||||
gcloud compute ssh "zebrad-tests-$BRANCH_NAME-$SHORT_SHA" --zone "$ZONE" \
|
||||
--command "git clone -b $BRANCH_NAME https://github.com/ZcashFoundation/zebra.git; cd zebra/; docker build -f docker/Dockerfile.test -t zebrad-test .; docker run -i zebrad-test cargo +nightly test --all --no-fail-fast -- -Zunstable-options --include-ignored --skip kill_on_timeout"
|
||||
--command "git clone -b $BRANCH_NAME https://github.com/ZcashFoundation/zebra.git; cd zebra/; docker build -f docker/Dockerfile.test -t zebrad-test .; docker run -i zebrad-test cargo test --workspace --no-fail-fast -- -Zunstable-options --include-ignored --skip kill_on_timeout"
|
||||
|
||||
# Clean up
|
||||
- name: Delete test instance
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM rustlang/rust:nightly
|
||||
FROM rust:buster
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
|
@ -16,5 +16,4 @@ EXPOSE 8233 18233
|
|||
|
||||
COPY . .
|
||||
|
||||
# Filtering to only run integration tests requires nightly for now
|
||||
CMD cargo +nightly test --all --no-fail-fast -- -Zunstable-options --include-ignored
|
||||
CMD cargo test --workspace --no-fail-fast -- -Zunstable-options --include-ignored
|
||||
|
|
Loading…
Reference in New Issue