Skip to content
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

docs: update test setup guide #778

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
docs: update test setup guide
  • Loading branch information
redlarva committed Dec 1, 2023
commit 10cd251921e852a655bca15f02d733357dc47f3a
44 changes: 22 additions & 22 deletions docs/e2e-integration-test-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ To run the demo, the following software needs to be installed.
cd - # Back to the root folder
```

### Additional Images Required for Apple Silicon 
### Additional Images required for Apple Silicon 

If you are using an Apple Silicon machine, follow these additional steps to build images:
If you are using an Apple Silicon machine, follow these additional steps to build required images:

* Build an `icon-chain` image
1. Build an `icon-chain` image

```bash
git clone https://github.com/icon-project/goloop.git
Expand All @@ -38,7 +38,7 @@ If you are using an Apple Silicon machine, follow these additional steps to buil
cd - # Back to the root folder
```

* Build a `goloop` image
2. Build a `goloop` image

```bash
git clone https://github.com/icon-project/goloop/
Expand All @@ -47,25 +47,25 @@ If you are using an Apple Silicon machine, follow these additional steps to buil
cd - # Back to the root folder
```

* Build an `archway` or `neutron` image
3. Build an `archway` or `neutron` image

**For Archway:**

```bash
git clone https://github.com/archway-network/archway/
cd archway
docker build -f Dockerfile.deprecated -t archway . --build-arg arch=aarch64
cd - # Back to the root folder
```

**For Neutron:**

```bash
git clone https://github.com/neutron-org/neutron.git
cd neutron
make build-docker-image
cd - # Back to the root folder
```
**For Archway:**
```bash
git clone https://github.com/archway-network/archway/
cd archway
docker build -f Dockerfile.deprecated -t archway . --build-arg arch=aarch64
cd - # Back to the root folder
```
**For Neutron:**
```bash
git clone https://github.com/neutron-org/neutron.git
cd neutron
make build-docker-image
cd - # Back to the root folder
```

## Running IBC Integration System Tests

Expand Down