Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/midnight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ jobs:
curl -L https://github.com/witnet/witnet-rust/releases/download/0.5.0-rc1/witnet-rust-testnet-5-tests-storage.tar.gz --output ./storage.tar.gz
tar -zxf ./storage.tar.gz

- name: Set up Docker Compose
uses: docker/setup-compose-action@v1

- name: Run debug E2E test
run: just e2e-debug
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ cross-compile target profile="release":
# run the latest stable release in the latest testnet
e2e-stable test_name="example" +flags="":
TEST_NAME={{test_name}} \
docker-compose \
docker compose \
-f docker/compose/e2e-stable/docker-compose.yaml \
up \
--scale=node=1 \
Expand All @@ -127,7 +127,7 @@ e2e-stable test_name="example" +flags="":
e2e-debug test_name="example" +flags="":
cargo build
TEST_NAME={{test_name}} \
docker-compose \
docker compose \
-f docker/compose/e2e-debug/docker-compose.yaml \
up \
--abort-on-container-exit \
Expand Down
6 changes: 4 additions & 2 deletions docker/debug-run/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM ubuntu:focal
FROM ubuntu:noble

# Install basic environment dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
libssl-dev \
curl
curl \
netcat-traditional \
jq

# Clean up apt packages so the docker image is as compact as possible
RUN apt-get clean && apt-get autoremove
Expand Down