Back to stable for test image

This commit is contained in:
Deirdre Connolly 2020-11-20 16:02:45 -05:00 committed by Deirdre Connolly
parent 52296b96c7
commit 036abd50ac
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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