Skip to content

Commit

Permalink
Remove flowR prefix from docker image versioning (#503)
Browse files Browse the repository at this point in the history
docker: remove `flowr-` prefix for docker semver, is redundant with the image name
  • Loading branch information
EagleoutIce authored Nov 21, 2023
1 parent 73ad957 commit 9e11058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
VERSION="$(date '+%Y%m%d')"
FLOWR_VERSION="$(docker run --rm flowr --version | grep -oP 'flowR:\s*\K[^ ]+')"
docker tag flowr "${TAG}":"date-$VERSION"
docker tag flowr "${TAG}":"flowr-$FLOWR_VERSION"
docker tag flowr "${TAG}":"$FLOWR_VERSION"
docker tag flowr "${TAG}":latest
docker images "$TAG"
echo ${{ secrets.DH_PASSWD }} | docker login -u ${{ secrets.DH_NAME }} --password-stdin
Expand Down

2 comments on commit 9e11058

@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: 9e11058 Previous: 243959c Ratio
Total per-file 3469.6531696363636 ms (3993.487442358496) 3190.570812409091 ms (3747.790963743062) 1.09
Retrieve AST from R code 73.34219645454546 ms (146.78415494482846) 68.74045054545455 ms (132.55959690808635) 1.07
Normalize R AST 96.64570104545454 ms (155.87017922658214) 96.19992009090909 ms (156.15063334620123) 1.00
Produce dataflow information 70.5309513181818 ms (184.45673390014895) 66.09041786363636 ms (169.92667998599904) 1.07
Total per-slice 1.97059070036632 ms (1.446572477195529) 1.8411702253695927 ms (1.267065280512554) 1.07
Static slicing 1.4527163357430446 ms (1.3284674895657471) 1.3684034386686694 ms (1.1799623517395228) 1.06
Reconstruct code 0.4991380967448726 ms (0.293498289654512) 0.4553098527401606 ms (0.2299566392692304) 1.10
failed to reconstruct/re-parse 0 # 0 # NaN
times hit threshold 0 # 0 # NaN
reduction (characters) 0.7329390759026896 # 0.7329390759026896 # 1
reduction (normalized tokens) 0.720988345209971 # 0.720988345209971 # 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: 9e11058 Previous: 243959c Ratio
Total per-file 5288.26396744 ms (5888.019443425871) 5419.399718899999 ms (6111.491408384184) 0.98
Retrieve AST from R code 76.9161245 ms (68.26678379897501) 85.22318365999999 ms (79.41151212889127) 0.90
Normalize R AST 112.36467678 ms (68.15182676917131) 113.45254984 ms (69.72126242848063) 0.99
Produce dataflow information 161.96262090000002 ms (273.4061282202704) 164.38322226 ms (279.00889908327076) 0.99
Total per-slice 8.498209474843316 ms (14.077393611354914) 8.82827828085479 ms (14.575511768060265) 0.96
Static slicing 8.00113679561672 ms (13.954281927474787) 8.228727295296194 ms (14.45423896853327) 0.97
Reconstruct code 0.48850044196164494 ms (0.24509386053671386) 0.5898725311439794 ms (0.30780610835907124) 0.83
failed to reconstruct/re-parse 9 # 9 # 1
times hit threshold 967 # 967 # 1
reduction (characters) 0.898713819973478 # 0.8987761232201357 # 1.00
reduction (normalized tokens) 0.8579790415512589 # 0.8582032343145828 # 1.00

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

Please sign in to comment.