Skip to content

Commit

Permalink
refactor(ci): check broken links afterward
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce committed Aug 20, 2024
1 parent 1697a06 commit f9b62d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/broken-links-and-wiki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@ jobs:
github_token: ${{ secrets.RELEASE_TOKEN }}
force: true

- name: "🔎 Check the README for broken links"
uses: becheran/mlc@v0.18.0
with:
args: --do-not-warn-for-redirect-to "http*://github.com/flowr-analysis/*,http*://flowr-analysis.github.io/*" --ignore-links "http*://hub.docker.com/r/*" README.md

- name: "⬆️ Publish the Wiki"
uses: Andrew-Chen-Wang/github-wiki-action@v4
# We do not need to republish if nothing changes. Furthermore, do not publish on PR as this should be done by the push on main!
Expand All @@ -93,6 +88,11 @@ jobs:
path: "wiki/"
token: ${{ secrets.GH_DEPLOY_WIKI }}

- name: "🔎 Check the README for broken links"
uses: becheran/mlc@v0.18.0
with:
args: --do-not-warn-for-redirect-to "http*://github.com/flowr-analysis/*,http*://flowr-analysis.github.io/*" --ignore-links "http*://hub.docker.com/r/*" README.md

- name: "🔎 Check the Wiki pages for broken links"
uses: becheran/mlc@v0.18.0
if: ${{ always() && !failure() }}
Expand Down

2 comments on commit f9b62d2

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"artificial" Benchmark Suite

Benchmark suite Current: f9b62d2 Previous: d16b9a2 Ratio
Retrieve AST from R code 239.4905489090909 ms (101.70184862856564) 241.68802936363636 ms (102.8761180575731) 0.99
Normalize R AST 19.599507454545453 ms (34.643255608447554) 31.739752136363638 ms (62.50756200538419) 0.62
Produce dataflow information 36.523041863636365 ms (79.0546662341071) 53.60407036363637 ms (129.65284550123417) 0.68
Total per-file 775.9306340454546 ms (1469.7325131508799) 1269.491520090909 ms (3081.8881842692626) 0.61
Static slicing 1.1022200646311848 ms (0.9413247627836409) 1.1992957765588008 ms (1.0956190505793448) 0.92
Reconstruct code 0.237546921075513 ms (0.18548213558800636) 0.40823540912587025 ms (0.23279531342826934) 0.58
Total per-slice 1.3564388446246431 ms (0.994075611770222) 1.6255373838885934 ms (1.1638162453002103) 0.83
failed to reconstruct/re-parse 0 # 0 # 1
times hit threshold 0 # 0 # 1
reduction (characters) 0.7974469447714406 # 0.7974469447714406 # 1
reduction (normalized tokens) 0.774073695901592 # 0.774073695901592 # 1
memory (df-graph) 147.58589311079547 KiB (359.2574768951678) 147.58589311079547 KiB (359.2574768951678) 1

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"social-science" Benchmark Suite

Benchmark suite Current: f9b62d2 Previous: d16b9a2 Ratio
Retrieve AST from R code 240.7394264 ms (47.94063484080989) 247.62148213999998 ms (45.06237178263203) 0.97
Normalize R AST 21.72349504 ms (16.823069565302475) 31.95647656 ms (25.60791349140293) 0.68
Produce dataflow information 66.08667506 ms (82.90578507573363) 81.06377198 ms (92.78105042956382) 0.82
Total per-file 1932.9207605 ms (3292.395564233703) 2253.7859776799996 ms (3816.1054094291667) 0.86
Static slicing 3.8702726573386625 ms (7.021235367975046) 4.320062977207287 ms (7.979427803781336) 0.90
Reconstruct code 0.23954259895408156 ms (0.14905776444438967) 0.4180827296166881 ms (0.21129610863943676) 0.57
Total per-slice 4.1173992411219515 ms (7.048308285584) 4.7471979325717735 ms (8.060206129507852) 0.87
failed to reconstruct/re-parse 0 # 0 # 1
times hit threshold 0 # 0 # 1
reduction (characters) 0.9250085598882571 # 0.9250085598882571 # 1
reduction (normalized tokens) 0.8936602769604 # 0.8936602769604 # 1
memory (df-graph) 142.5463671875 KiB (146.6995040110581) 142.5463671875 KiB (146.6995040110581) 1

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.