Skip to content

Commit

Permalink
added the tests in the CI pipeline of fablo
Browse files Browse the repository at this point in the history
Signed-off-by: Sanket Teli <telisanket2002@gmail.com>
  • Loading branch information
Sanket-0510 committed Dec 4, 2024
1 parent 711f7f0 commit 439c5a7
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,55 @@ jobs:
path: |
e2e-network/docker/test-04-snapshot.sh.logs/*
e2e-network/docker/test-04-snapshot.sh.tmpdir/fablo-target/**/*
test-05-v3:
needs: test-main
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Build Fablo
run: |
shellcheck --version && \
yamllint -v && \
npm install && \
./fablo-build.sh
- name: Test version 3
run: e2e-network/docker/test-05-version3.sh

- uses: actions/upload-artifact@v4
if: always()
with:
name: test-05-version3
path: |
e2e-network/docker/test-05-version3-snapshot.sh.logs/*
e2e-network/docker/test-05-version3-snapshot.sh.tmpdir/fablo-target/**/*
test-05-v3-BFT:
needs: test-main
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Build Fablo
run: |
shellcheck --version && \
yamllint -v && \
npm install && \
./fablo-build.sh
- name: Test version 3 with BFT
run: e2e-network/docker/test-05-version3.sh

- uses: actions/upload-artifact@v4
if: always()
with:
name: test-05-version3-BFT-snapshot
path: |
e2e-network/docker/test-05-version3-BFT-snapshot.sh.logs/*
e2e-network/docker/test-05-version3-BFT-snapshot.sh.tmpdir/fablo-target/**/*

0 comments on commit 439c5a7

Please sign in to comment.