Skip to content

Commit

Permalink
feat(ci-qa): no longer trigger on the gh-pages branch (#1068)
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce authored Oct 11, 2024
1 parent 1f8a882 commit 3c6c2b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: "QA"
# Runs on each push and tests flowR for the default configuration.
# Also publishes a prerelease build to npm and updates the documentation with new performance benchmarks.
# Also publishes a pre-release build to npm and updates the documentation with new performance benchmarks.
# Depending on the targets, etc. this may perform a different subset of steps!

'on':
push:
branches-ignore:
- 'gh-pages'
paths-ignore:
- '**/*.md'
- 'LICENSE'
Expand Down

2 comments on commit 3c6c2b5

@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: 3c6c2b5 Previous: 9d8b361 Ratio
Retrieve AST from R code 242.95378972727272 ms (106.31507750325316) 238.12351204545453 ms (103.59720843756357) 1.02
Normalize R AST 18.716323727272727 ms (32.564997610546754) 19.968034227272728 ms (34.84298543847825) 0.94
Produce dataflow information 41.65497731818182 ms (94.18228881628872) 38.310942090909094 ms (82.04448044777155) 1.09
Total per-file 837.0752123181819 ms (1498.1718376558697) 811.1703915909092 ms (1431.4404310276739) 1.03
Static slicing 2.2746655309989694 ms (1.6493674768985929) 2.258090287874194 ms (1.2792808105316449) 1.01
Reconstruct code 0.24070520684016386 ms (0.17974261877435146) 0.22489327849282828 ms (0.17585774592637268) 1.07
Total per-slice 2.5315437463114345 ms (1.7089638683916384) 2.4996261233332735 ms (1.3278746913052974) 1.01
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) 95.46617542613636 KiB (244.77619956879823) 147.42458274147728 KiB (358.6827375397903) 0.65

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: 3c6c2b5 Previous: 9d8b361 Ratio
Retrieve AST from R code 246.07246394 ms (46.05310689543414) 238.40722376 ms (42.95412443307438) 1.03
Normalize R AST 21.166566420000002 ms (15.75719536851055) 22.0872248 ms (17.016890594916376) 0.96
Produce dataflow information 76.27363984 ms (89.1652534743867) 74.60461736 ms (88.95210983454488) 1.02
Total per-file 7829.97046804 ms (29243.285613613356) 11091.201449639999 ms (52310.41942604725) 0.71
Static slicing 16.240637110935143 ms (44.70325631375776) 22.047137876062838 ms (78.30877993604865) 0.74
Reconstruct code 0.2648694462789659 ms (0.15820147415177566) 0.2327517832436913 ms (0.14954480815603388) 1.14
Total per-slice 16.514015404757746 ms (44.726616859472344) 22.287796325154986 ms (78.33211951742135) 0.74
failed to reconstruct/re-parse 0 # 0 # 1
times hit threshold 0 # 0 # 1
reduction (characters) 0.8712997340230448 # 0.8719618340615195 # 1.00
reduction (normalized tokens) 0.8102441553774778 # 0.810633662275233 # 1.00
memory (df-graph) 99.8990234375 KiB (113.72812769327498) 145.6434765625 KiB (153.49028997815503) 0.69

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

Please sign in to comment.