Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Apr 11, 2024
1 parent b060109 commit 5134626
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/recheck.wip
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Run a recheck

jobs:
recheck:
runs-on: ubuntu-latest
container: r-devel/recheck
steps:
- uses: r-devel/actions/save-source
- uses: r-devel/actions/save-dependencies

checks:
runs-on: ubuntu-latest
timeout-minutes: 600
strategy:
matrix:
version: [ old, new ]
steps:
- name: Free some disk space
run: rm -Rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY"

- uses: r-devel/actions/download-source

- uses: r-devel/actions/download-deps

- uses: r-devel/actions/check
with:
version: ${matrix.version}

- uses: actions/upload-artifact@v4
with:
name: checklogs
path: |
*/*.log
*/*.out
*/*.Rout
*/*.fail
check-details.*

0 comments on commit 5134626

Please sign in to comment.