Test a recheck #36
Workflow file for this run
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
name: Test a recheck | |
on: | |
workflow_dispatch: | |
inputs: | |
package_url: | |
description: 'URL to a source package tarball' | |
required: true | |
which: | |
type: choice | |
description: Which reverse dependencies to check | |
options: | |
- strong | |
- most | |
jobs: | |
recheck: | |
runs-on: ubuntu-latest | |
timeout-minutes: 600 | |
steps: | |
- name: Free some disk space | |
if: runner.os == 'linux' | |
run: rm -Rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY" | |
- name: Test recheck | |
uses: r-universe-org/recheck@HEAD | |
with: | |
package: ${{ github.event.inputs.package_url }} | |
which: ${{ github.event.inputs.which }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: checklogs | |
path: | | |
*/*.log | |
*/*.out | |
*/*.Rout | |
*/*.fail | |
check-details.* |