-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial touchstone infrastructure (#210)
* Initial touchstone infrastructure * Copy touchstone receive YAML from {epidemics} * Update touchstone config
- Loading branch information
1 parent
3dcbde6
commit f037395
Showing
8 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ | |
^revdep$ | ||
^CRAN-SUBMISSION$ | ||
^CITATION\.cff$ | ||
^touchstone$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Continuous Benchmarks (Comment) | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Continuous Benchmarks (Receive)"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
upload: | ||
runs-on: ubuntu-latest | ||
if: > | ||
${{ github.event.workflow_run.event == 'pull_request' }} | ||
steps: | ||
- uses: lorenzwalthert/touchstone/actions/comment@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Continuous Benchmarks (Receive) | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
prepare: | ||
runs-on: ubuntu-latest | ||
if: | ||
true && | ||
( | ||
github.event.comment.author_association == 'OWNER' || | ||
github.event.comment.author_association == 'MEMBER' || | ||
github.event.comment.author_association == 'COLLABORATOR' | ||
) | ||
outputs: | ||
config: ${{ steps.read_touchstone_config.outputs.config }} | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- id: read_touchstone_config | ||
run: | | ||
content=`cat ./touchstone/config.json` | ||
# the following lines are only required for multi line json | ||
content="${content//'%'/'%25'}" | ||
content="${content//$'\n'/'%0A'}" | ||
content="${content//$'\r'/'%0D'}" | ||
# end of optional handling for multi line json | ||
echo "::set-output name=config::$content" | ||
build: | ||
needs: prepare | ||
runs-on: ${{ matrix.config.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- ${{ fromJson(needs.prepare.outputs.config) }} | ||
env: | ||
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | ||
RSPM: ${{ matrix.config.rspm }} | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: lorenzwalthert/touchstone/actions/receive@v1 | ||
with: | ||
cache-version: 1 | ||
benchmarking_repo: ${{ matrix.config.benchmarking_repo }} | ||
benchmarking_ref: ${{ matrix.config.benchmarking_ref }} | ||
benchmarking_path: ${{ matrix.config.benchmarking_path }} | ||
force_upstream: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* | ||
!script.R | ||
!config.json | ||
!.gitignore | ||
!header.R | ||
!footer.R |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"os": "ubuntu-22.04", | ||
"r": "4.4.0", | ||
"https://packagemanager.rstudio.com/all/__linux__/jammy/latest" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# You can modify the PR comment footer here. You can use github markdown e.g. | ||
# emojis like :tada:. | ||
# This file will be parsed and evaluate within the context of | ||
# `benchmark_analyze` and should return the comment text as the last value. | ||
# See `?touchstone::pr_comment` | ||
link <- "https://lorenzwalthert.github.io/touchstone/articles/inference.html" | ||
glue::glue( | ||
"\nFurther explanation regarding interpretation and", | ||
" methodology can be found in the [documentation]({link})." | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# You can modify the PR comment header here. You can use github markdown e.g. | ||
# emojis like :tada:. | ||
# This file will be parsed and evaluate within the context of | ||
# `benchmark_analyze` and should return the comment text as the last value. | ||
# Available variables for glue substitution: | ||
# * ci: confidence interval | ||
# * branches: BASE and HEAD branches benchmarked against each other. | ||
# See `?touchstone::pr_comment` | ||
glue::glue( | ||
"This is how benchmark results would change (along with a", | ||
" {100 * ci}% confidence interval in relative change) if ", | ||
"{system2('git', c('rev-parse', 'HEAD'), stdout = TRUE)} is merged into {branches[1]}:\n" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# see `help(run_script, package = 'touchstone')` on how to run this | ||
# interactively | ||
|
||
# TODO OPTIONAL Add directories you want to be available in this file or during the | ||
# benchmarks. | ||
# touchstone::pin_assets("some/dir") | ||
|
||
# installs branches to benchmark | ||
touchstone::branch_install() | ||
|
||
# benchmark a function call from your package (two calls per branch) | ||
touchstone::benchmark_run( | ||
# expr_before_benchmark = source("dir/data.R"), #<-- TODO OTPIONAL setup before benchmark | ||
random_test = yourpkg::f(), #<- TODO put the call you want to benchmark here | ||
n = 2 | ||
) | ||
|
||
# TODO OPTIONAL benchmark any R expression (six calls per branch) | ||
# touchstone::benchmark_run( | ||
# more = { | ||
# if (TRUE) { | ||
# y <- yourpkg::f2(x = 3) | ||
# } | ||
# }, #<- TODO put the call you want to benchmark here | ||
# n = 6 | ||
# ) | ||
|
||
|
||
# create artifacts used downstream in the GitHub Action | ||
touchstone::benchmark_analyze() |