Skip to content

Commit 439c5a7

Browse files
committed
added the tests in the CI pipeline of fablo
Signed-off-by: Sanket Teli <telisanket2002@gmail.com>
1 parent 711f7f0 commit 439c5a7

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.github/workflows/test-on-push.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,55 @@ jobs:
169169
path: |
170170
e2e-network/docker/test-04-snapshot.sh.logs/*
171171
e2e-network/docker/test-04-snapshot.sh.tmpdir/fablo-target/**/*
172+
173+
test-05-v3:
174+
needs: test-main
175+
runs-on: ubuntu-latest
176+
steps:
177+
- name: Check out repository code
178+
uses: actions/checkout@v2
179+
180+
- name: Build Fablo
181+
run: |
182+
shellcheck --version && \
183+
yamllint -v && \
184+
npm install && \
185+
./fablo-build.sh
186+
187+
- name: Test version 3
188+
run: e2e-network/docker/test-05-version3.sh
189+
190+
- uses: actions/upload-artifact@v4
191+
if: always()
192+
with:
193+
name: test-05-version3
194+
path: |
195+
e2e-network/docker/test-05-version3-snapshot.sh.logs/*
196+
e2e-network/docker/test-05-version3-snapshot.sh.tmpdir/fablo-target/**/*
197+
198+
test-05-v3-BFT:
199+
needs: test-main
200+
runs-on: ubuntu-latest
201+
steps:
202+
- name: Check out repository code
203+
uses: actions/checkout@v2
204+
205+
- name: Build Fablo
206+
run: |
207+
shellcheck --version && \
208+
yamllint -v && \
209+
npm install && \
210+
./fablo-build.sh
211+
212+
- name: Test version 3 with BFT
213+
run: e2e-network/docker/test-05-version3.sh
214+
215+
- uses: actions/upload-artifact@v4
216+
if: always()
217+
with:
218+
name: test-05-version3-BFT-snapshot
219+
path: |
220+
e2e-network/docker/test-05-version3-BFT-snapshot.sh.logs/*
221+
e2e-network/docker/test-05-version3-BFT-snapshot.sh.tmpdir/fablo-target/**/*
222+
223+

0 commit comments

Comments
 (0)