Skip to content

Commit

Permalink
changes in spec
Browse files Browse the repository at this point in the history
Signed-off-by: tnazarew <[email protected]>
  • Loading branch information
tnazarew committed Oct 23, 2024
1 parent 904d724 commit 649e0a6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_scenarios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: ./.github/actions/run_event_validation
with:
component: 'scenarios'
tag: ${{ get-latest-snapshots == 'true' && 'main' || inputs.release }}
tag: ${{ inputs.get-latest-snapshots == 'true' && 'main' || inputs.release }}
release: ${{ inputs.release }}
target-path: 'reports/scenarios-report.json'

Expand Down
21 changes: 9 additions & 12 deletions .github/workflows/main_new_release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: Daily Build

on: push

# actual trigger for daily run of workflow
#on:
# schedule:
# - cron: "0 3 * * *"
on:
schedule:
- cron: "0 3 * * *"

permissions:
id-token: write
Expand Down Expand Up @@ -71,7 +68,7 @@ jobs:

spark-dataproc:
needs: initialize_workflow
if: ${{ needs.initialize_workflow.outputs.run_spark_dataproc == 'false' }}
if: ${{ needs.initialize_workflow.outputs.run_spark_dataproc == 'true' }}
uses: ./.github/workflows/producer_spark_dataproc.yml
secrets:
gcpKey: ${{ secrets.GCP_SA_KEY }}
Expand All @@ -89,10 +86,10 @@ jobs:
if: ${{ !failure() }}
uses: ./.github/workflows/collect_and_compare_reports.yml

# notify-maintainers:
# needs: collect-and-compare-reports
# if: ${{ !failure() }}
# uses: ./.github/workflows/notify_maintainers.yml
notify-maintainers:
needs: collect-and-compare-reports
if: ${{ !failure() }}
uses: ./.github/workflows/notify_maintainers.yml

generate-compatibility-tables:
needs: collect-and-compare-reports
Expand All @@ -102,7 +99,7 @@ jobs:
update-repo-files:
needs:
- initialize_workflow
# - notify-maintainers
- notify-maintainers
- generate-compatibility-tables
if: ${{ !failure() }}
uses: ./.github/workflows/update_repo_files.yml
4 changes: 2 additions & 2 deletions scripts/generate_compatibility_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ def main():

# Output the tables
with open(target_path, "w") as file:
file.write("## Producers\n")
file.write("# Producers\n")
file.write("## Facets Compatibility\n")
file.write(producer_facets_table + "\n\n")

for k, v in lineage_level_tables.items():
file.write(f"## Lineage level support for {k}\n")
file.write(v + "\n\n")

file.write("## Consumers\n")
file.write("# Consumers\n")
file.write("## Facets Compatibility\n")
file.write(consumer_facets_table + "\n\n")
for k, v in producers_tables.items():
Expand Down

0 comments on commit 649e0a6

Please sign in to comment.