Skip to content

Commit

Permalink
use the v1v2 stack config
Browse files Browse the repository at this point in the history
  • Loading branch information
elraphty committed Sep 2, 2024
1 parent bdd0dbc commit 02ee2c5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/frontend-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:

- name: Clone Stack
run: |
git clone --single-branch --branch change_v2_ports https://github.com/stakwork/sphinx-stack.git stackv1
git clone --single-branch --branch change_v2_ports https://github.com/stakwork/sphinx-stack.git stack
- name: Clone Sphinx Tribes Frontend
run: |
git clone https://github.com/stakwork/sphinx-tribes-frontend.git tribes-frontend
- name: Give Permissions to Stack
working-directory: ./stackv1
working-directory: ./stack
run: |
chmod 777 ./bitcoind;
chmod 777 -R ./relay;
Expand All @@ -46,20 +46,20 @@ jobs:
timeout_minutes: 10
max_attempts: 3
command: |
GITACTION_ENV=gitactionenv docker compose -f ./stackv1/alts/proxy.yml --project-directory ./stackv1 up -d;
GITACTION_ENV=gitactionenv docker compose -f ./stack/alts/v1v2.yml --project-directory ./stack up -d;
sleep 240;
docker ps
docker logs meme.sphinx
docker logs dave.sphinx
docker logs db.sphinx
docker logs tribes.sphinx
docker wait stackv1-relaysetup-1
cat stackv1/relay/NODES.json;
docker wait stack-relaysetup-1
cat stack/relay/NODES.json;
- name: Copy Node.json
uses: canastro/copy-file-action@master
with:
source: "stackv1/relay/NODES.json"
source: "stack/relay/NODES.json"
target: "tribes-frontend/cypress/fixtures/nodes.json"

- name: Install Frontend Dependencies
Expand All @@ -84,5 +84,5 @@ jobs:
path: tribes-frontend/cypress/screenshots

- name: Stop Stack
working-directory: ./stackv1
working-directory: ./stack
run: docker compose down

0 comments on commit 02ee2c5

Please sign in to comment.