Skip to content

Commit

Permalink
CI/CD: allow link checker to fail (#986)
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce authored Sep 18, 2024
2 parents 026df2b + 3b37563 commit c9d6aea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/broken-links-and-wiki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ jobs:
with:
node-version: ${{ env.ACTION_NODE_VERSION }}
registry-url: "https://registry.npmjs.org/"

- name: "⬇️ Setup R"
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ env.ACTION_R_VERSION }}

- name: "📦 Install R Packages"
shell: Rscript {0}
run: install.packages("xmlparsedata", repos="https://cloud.r-project.org/")

- name: "🛒 Checkout LFS"
# just as a time-proven safety measure
run: git lfs checkout
Expand Down Expand Up @@ -90,11 +90,13 @@ jobs:

- name: "🔎 Check the README for broken links"
uses: becheran/mlc@v0.18.0
continue-on-error: true
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
continue-on-error: true
if: ${{ always() && !failure() }}
with:
args: --do-not-warn-for-redirect-to "http*://github.com/flowr-analysis/*,http*://flowr-analysis.github.io/*" wiki/

2 comments on commit c9d6aea

@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: c9d6aea Previous: 9d8b361 Ratio
Retrieve AST from R code 233.7484197727273 ms (96.8598608108703) 238.12351204545453 ms (103.59720843756357) 0.98
Normalize R AST 20.016421727272725 ms (35.64989061863511) 19.968034227272728 ms (34.84298543847825) 1.00
Produce dataflow information 37.66780709090909 ms (80.89386523273984) 38.310942090909094 ms (82.04448044777155) 0.98
Total per-file 797.9438561363636 ms (1412.943569459674) 811.1703915909092 ms (1431.4404310276739) 0.98
Static slicing 2.1990558616251383 ms (1.282808010719895) 2.258090287874194 ms (1.2792808105316449) 0.97
Reconstruct code 0.22654619443761734 ms (0.17901395242153853) 0.22489327849282828 ms (0.17585774592637268) 1.01
Total per-slice 2.449068191560374 ms (1.3485861025570347) 2.4996261233332735 ms (1.3278746913052974) 0.98
failed to reconstruct/re-parse 0 # 0 # 1
times hit threshold 0 # 0 # 1
reduction (characters) 0.7869360165281424 # 0.7869360165281424 # 1
reduction (normalized tokens) 0.7639690077689504 # 0.7639690077689504 # 1
memory (df-graph) 147.42458274147728 KiB (358.6827375397903) 147.42458274147728 KiB (358.6827375397903) 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: c9d6aea Previous: 9d8b361 Ratio
Retrieve AST from R code 241.96826375999999 ms (45.02032685550616) 238.40722376 ms (42.95412443307438) 1.01
Normalize R AST 22.528694899999998 ms (16.8302858125451) 22.0872248 ms (17.016890594916376) 1.02
Produce dataflow information 75.74714912 ms (87.49187129872725) 74.60461736 ms (88.95210983454488) 1.02
Total per-file 11316.126126 ms (53539.482039736824) 11091.201449639999 ms (52310.41942604725) 1.02
Static slicing 22.494386291351606 ms (80.14039810044218) 22.047137876062838 ms (78.30877993604865) 1.02
Reconstruct code 0.23801616878655596 ms (0.14709009170462942) 0.2327517832436913 ms (0.14954480815603388) 1.02
Total per-slice 22.740644509720077 ms (80.16303614592589) 22.287796325154986 ms (78.33211951742135) 1.02
failed to reconstruct/re-parse 0 # 0 # 1
times hit threshold 0 # 0 # 1
reduction (characters) 0.8719618340615195 # 0.8719618340615195 # 1
reduction (normalized tokens) 0.810633662275233 # 0.810633662275233 # 1
memory (df-graph) 145.6434765625 KiB (153.49028997815503) 145.6434765625 KiB (153.49028997815503) 1

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

Please sign in to comment.