8000 Cleanup after build · jeroen/V8@1383c1f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Cleanup after build #19

Cleanup after build

Cleanup after build #19

Workflow file for this run

on:
push:
pull_request:
name: RHUB-check
jobs:
R-CMD-check:
runs-on: ubuntu-latest
name: r-hub2/${{ matrix.container }}
container: ghcr.io/r-hub/containers/${{ matrix.container }}:latest
strategy:
fail-fast: false
matrix:
container: [ 'clang16', 'clang18', 'clang20', 'ubuntu-clang' ]
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
DOWNLOAD_STATIC_LIBV8: true
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- uses: r-lib/actions/check-r-package@v2
0