Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(general): add running allure report flow after forge ci job part 3 #1023

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
86743a0
add running allure report flow after forge ci job
oldGreg5 Oct 16, 2024
d0668ee
add temp trigger for this branch
oldGreg5 Oct 16, 2024
8442582
try 1
oldGreg5 Oct 16, 2024
38d9e90
try 2
oldGreg5 Oct 16, 2024
307e66d
try 3
oldGreg5 Oct 16, 2024
8f4d6fe
try 4
oldGreg5 Oct 16, 2024
38d66ec
add running after ci finishes
oldGreg5 Oct 16, 2024
7263a46
Merge branch 'main' into 974-task-make-the-allure-report-workflow-run…
oldGreg5 Oct 16, 2024
f67a824
try using forge run instead of ci run
oldGreg5 Oct 16, 2024
f83e1c7
try using forge run instead of ci run for all possible in allure flow
oldGreg5 Oct 16, 2024
c410668
Merge branch 'main' into 974-task-make-the-allure-report-workflow-run…
oldGreg5 Oct 16, 2024
16baf16
Merge branch 'main' into 974-task-make-the-allure-report-workflow-run…
oldGreg5 Oct 17, 2024
b50d43c
add forge setup step
oldGreg5 Oct 17, 2024
bbc3d1c
try 1
oldGreg5 Oct 17, 2024
a4b8043
try 2
oldGreg5 Oct 17, 2024
33c54be
try 3
oldGreg5 Oct 17, 2024
140be22
try 4
oldGreg5 Oct 17, 2024
7cce296
add forge install
oldGreg5 Oct 17, 2024
d9d10e6
cleanup
oldGreg5 Oct 17, 2024
c12ad7c
remove running allure after ci until allure flow changes are in main
oldGreg5 Oct 17, 2024
dabbe7e
remove local running option
oldGreg5 Oct 17, 2024
8d2a58a
remove unused vars
oldGreg5 Oct 17, 2024
77b4777
Merge branch 'main' into 974-task-make-the-allure-report-workflow-run…
oldGreg5 Oct 17, 2024
c984e77
add running test reporting after ci job
oldGreg5 Oct 17, 2024
7c23702
add running test reporting after ci job
oldGreg5 Oct 17, 2024
c158c0b
remove allow-privileged flags from disabled tests
oldGreg5 Oct 17, 2024
02f76a2
Merge branch 'main' into 974-task-make-the-allure-report-workflow-run…
oldGreg5 Oct 17, 2024
0014e67
Merge branch 'refs/heads/main' into 974-task-make-the-allure-report-w…
oldGreg5 Oct 17, 2024
04d6b75
cleanup
oldGreg5 Oct 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
with:
forge_version: 0.2.1

allure:
test_reporting:
if: always()
needs: ci
uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@main
2 changes: 0 additions & 2 deletions .github/workflows/generate-allure-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
continue-on-error: true
with:
path: ./catalyst-gateway/tests/schemathesis_tests+test-fuzzer-api
target_args: --allow-privileged

- name: Get flutter unit test report
uses: input-output-hk/catalyst-forge/actions/run@master
Expand All @@ -60,7 +59,6 @@ jobs:
continue-on-error: true
with:
path: ./catalyst-gateway/tests/api_tests+test
target_args: --allow-privileged

- name: Collect and upload test reports
uses: actions/upload-artifact@v4
Expand Down
Loading