-
Notifications
You must be signed in to change notification settings - Fork 9
237 any possibility of adding narmfalse argument to the gendatadensity and adddatadensity functions #238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
237 any possibility of adding narmfalse argument to the gendatadensity and adddatadensity functions #238
Changes from all commits
c1d9e65
f5bfd15
413db39
015e73a
c0954ae
c5a2124
4d785dd
c11f965
536abcf
3f22600
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,19 +7,17 @@ jobs: | |
| config: ${{ steps.read_touchstone_config.outputs.config }} | ||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@v2 | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| 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" | ||
| { | ||
| echo "config<<EOF" | ||
| cat ./touchstone/config.json | ||
| echo "EOF" | ||
| } >> "$GITHUB_OUTPUT" | ||
|
Comment on lines
+15
to
+19
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice!
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's ChatGPT, not me. :) |
||
|
|
||
| build: | ||
| needs: prepare | ||
| runs-on: ${{ matrix.config.os }} | ||
|
|
@@ -34,7 +32,7 @@ jobs: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@v2 | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Set up git user | ||
|
|
@@ -66,7 +64,7 @@ jobs: | |
| shell: Rscript {0} | ||
| - name: Checkout benchmarking repo | ||
| if: ${{ matrix.config.benchmarking_repo != ''}} | ||
| uses: actions/checkout@v2 | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: ${{ matrix.config.benchmarking_repo }} | ||
| ref: ${{ matrix.config.benchmarking_ref }} | ||
|
|
@@ -76,20 +74,20 @@ jobs: | |
| - name: Save PR number | ||
| run: | | ||
| echo ${{ github.event.number }} > ./touchstone/pr-comment/NR | ||
| - uses: actions/upload-artifact@v2 | ||
| - uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: visual-benchmarks | ||
| path: touchstone/plots/ | ||
| - uses: actions/upload-artifact@v1 | ||
| - uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: results | ||
| path: touchstone/pr-comment | ||
| - uses: actions/download-artifact@v1 | ||
| - uses: actions/download-artifact@v4 | ||
| with: | ||
| name: results | ||
| - name: comment PR | ||
| run: cat touchstone/pr-comment/info.txt | ||
| - uses: actions/upload-artifact@v2 | ||
| - uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: pr | ||
| path: touchstone/pr-comment/ | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was a frozen snapshot and now it's a moving target so it might cause issues through updates? But I guess it would be good to see those in CI anyway :) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "os": "ubuntu-20.04", | ||
| "r": "4.1.1", | ||
| "rspm": "https://packagemanager.rstudio.com/all/__linux__/focal/2912022-01-07+MTo3NDQwNTcyLDI6NDUyNjIxNTs0QzU3NUZBRQ" | ||
| } | ||
| "os": "ubuntu-22.04", | ||
| "r": "4.4.3", | ||
| "rspm": "https://packagemanager.rstudio.com/all/__linux__/jammy/latest" | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.