Skip to content

Commit

Permalink
fix: chmod -R
Browse files Browse the repository at this point in the history
  • Loading branch information
limpbrains committed Jun 15, 2024
1 parent 77cda12 commit 22768d6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/e2e-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,13 @@ jobs:
mkdir lnd && chmod 777 lnd
docker-compose pull --quiet
docker compose up -d
sudo chmod -R 777 lnd
- name: Wait for electrum server
- name: Wait for electrum server and LND
timeout-minutes: 10
run: while ! nc -z '127.0.0.1' 60001; do sleep 1; done
run: |
while ! nc -z '127.0.0.1' 60001; do sleep 1; done
while ! nc -z '127.0.0.1' 10009; do sleep 1; done
sudo chmod -R 777 lnd
- name: Run tests
uses: reactivecircus/android-emulator-runner@v2
Expand Down

0 comments on commit 22768d6

Please sign in to comment.