-
Notifications
You must be signed in to change notification settings - Fork 80
68 lines (60 loc) · 1.6 KB
/
dragonflybsd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:
inputs:
release:
description: 'DragonFlyBSD release'
required: true
type: choice
options:
- '6.4.0'
default: '6.4.0'
name: dragonflybsd.yaml
jobs:
dragonflybsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: r-hub/actions/setup-r-dragonflybsd@main
with:
release: ${{ github.event.inputs.release || '6.4.0' }}
- uses: r-hub/actions/debug-shell@main
- name: Test R in DragonFlyBSD VM
run: |
getRversion()
R.version[["platform"]]
.libPaths()
.Library
find.package("pak")
Sys.getenv()
shell: Rscript {0}
- name: Install system requirements
run: |
pkg install -y hs-pandoc
shell: dragonflybsd {0}
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: none
install-pandoc: false
install-quarto: false
cache-version: dragonflybsd-1
extra-packages: |
any::rcmdcheck
jeroen/openssl
RcppCore/Rcpp
sodium=?ignore
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
upload-results: never
upload-snapshots: false
env:
NOT_CRAN: true
- uses: actions/upload-artifact@v4
if: failure()
with:
name: 'check-results'
path: check