From 262d49d7a8310add772df3d5f9b8e767bb02856c Mon Sep 17 00:00:00 2001 From: Tha_14 Date: Tue, 27 Dec 2022 00:55:52 +0200 Subject: [PATCH] feat: add swarm test to CI --- .github/workflows/push.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 196a407..07732ff 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,3 +14,24 @@ jobs: run: nc -z -w30 127.0.0.1 4156 - name: Test if uam http statistics port is open run: nc -z -w30 127.0.0.1 17099 + swarm-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build the stack + run: cd uam-swarm && PBKEY=${{ secrets.PBKEY }} docker-compose up -d + - name: Sleep until uam is running + run: sleep 280s + shell: bash + - name: Test if uam_1 mining port is open + run: nc -z -w30 127.0.0.1 4160 + - name: Test if uam_1 http statistics port is open + run: nc -z -w30 127.0.0.1 17100 + - name: Test if uam_2 mining port is open + run: nc -z -w30 127.0.0.1 4161 + - name: Test if uam_2 http statistics port is open + run: nc -z -w30 127.0.0.1 17101 + - name: Test if uam_3 mining port is open + run: nc -z -w30 127.0.0.1 4162 + - name: Test if uam_3 http statistics port is open + run: nc -z -w30 127.0.0.1 17102