This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathazure-tidyverse.yml
65 lines (61 loc) · 1.73 KB
/
azure-tidyverse.yml
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
parameters:
R_LIBS_USER: '$(Agent.BuildDirectory)/R/library'
CRAN: 'https://cloud.r-project.org'
coverage: true
env: {}
jobs:
- job: 'Linux'
variables:
CRAN: 'https://demo.rstudiopm.com/all/__linux__/xenial/latest'
R_LIBS_USER: ${{parameters.R_LIBS_USER}}
TZ: UTC
CI: true
${{ insert }}: ${{ parameters.env }}
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
R-3.2:
containerImage: rstudio/r-base:3.2-xenial
R-3.3:
containerImage: rstudio/r-base:3.3-xenial
R-3.4:
containerImage: rstudio/r-base:3.4-xenial
R-3.5:
containerImage: rstudio/r-base:3.5-xenial
R-3.6:
containerImage: rstudio/r-base:3.6-xenial
container: $[ variables['containerImage'] ]
steps:
- template: templates/r-setup-linux.yml
- template: templates/pkg-workflow.yml
parameters:
coverage: false
- job: 'macOS'
variables:
CRAN: ${{parameters.CRAN}}
R_LIBS_USER: ${{parameters.R_LIBS_USER}}
CI: true
${{ insert }}: ${{ parameters.env }}
pool:
vmImage: 'macOS-10.15'
steps:
- template: templates/r-setup-macOS.yml
- template: templates/pkg-workflow.yml
parameters:
coverage: ${{parameters.coverage}}
- job: 'Windows'
variables:
CRAN: ${{parameters.CRAN}}
R_LIBS_USER: ${{parameters.R_LIBS_USER}}
CI: true
${{ insert }}: ${{ parameters.env }}
pool:
vmImage: 'vs2017-win2016'
steps:
- template: templates/r-setup-windows.yml
- template: templates/pkg-workflow.yml
parameters:
args: "c('--no-manual', '--no-multiarch')"
coverage: false
cache: false