Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/build-check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ on:
required: false
default: ""
type: string
additional-r-cmd-build-params:
description: Additional flags or parameters to add to R CMD build
required: false
default: ""
type: string
additional-r-cmd-check-params:
description: Additional flags or parameters to add to R CMD check
required: false
Expand Down Expand Up @@ -615,7 +620,8 @@ jobs:
export $(tr '\n' ' ' < /tmp/dotenv.env)
}
fi
R CMD build ${{ github.event.repository.name }}/${{ inputs.package-subdirectory }}
R CMD build ${{ inputs.additional-r-cmd-build-params }} \
${{ github.event.repository.name }}/${{ inputs.package-subdirectory }}
shell: bash

- name: Run R CMD check 🏁
Expand Down Expand Up @@ -948,7 +954,7 @@ jobs:
fi
if [ "${{ inputs.disable-package-rebuild-and-upload }}" != "true" ]
then {
R CMD build .
R CMD build ${{ inputs.additional-r-cmd-build-params }} .
} else {
echo "🙅🏼‍♀️ Not rebuilding package for uploads"
}
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Encoding: UTF-8
Language: en-US
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
RoxygenNote: 7.3.3
Loading