Skip to content

Commit

Permalink
integration_tests.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
abdul-050 authored Nov 25, 2024
1 parent c6a0c13 commit b1c1f11
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
on:
workflow_dispatch: # This allows manual triggering of the workflow from the GitHub UI

jobs:
integration-builds:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -54,3 +57,18 @@ jobs:
with:
name: full-build-logs
path: logs/

final-report:
runs-on: ubuntu-latest
needs: [integration-builds]
steps:
# Download logs
- uses: actions/download-artifact@v4
with:
name: full-build-logs
path: logs/

# Generate Final Report
- name: Generate Report
run: |
python scripts/parse_full_build_logs.py logs/

0 comments on commit b1c1f11

Please sign in to comment.