Skip to content

Commit c7ca614

Browse files
authored
Add minor CI updates (#179)
1 parent dd706ab commit c7ca614

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.github/workflows/pages.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ jobs:
2727
- name: Build docs
2828
working-directory: r-package/policytree
2929
run: |
30-
# Install pandoc
31-
sudo apt-get install -qq pandoc
32-
3330
# Install R
3431
curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
3532
./run.sh bootstrap
3633
./run.sh install_all
34+
./run.sh install_aptget pandoc
3735
3836
# Install policytree
3937
R CMD INSTALL .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To install the latest development version from source:
2525
devtools::install_github("grf-labs/policytree", subdir = "r-package/policytree")
2626
```
2727

28-
Installing from source requires a C++ 11 compiler (on Windows Rtools is required as well) together with the R packages
28+
Installing from source requires a C++ compiler (on Windows Rtools is required as well) together with the R packages
2929
`Rcpp` and `BH`.
3030

3131
### Multi-action policy learning example

azure-pipelines.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ jobs:
1313
imageName: "ubuntu-latest"
1414
macos:
1515
imageName: "macOS-latest"
16-
cppVer: "CXX20"
17-
macos_cpp11:
18-
imageName: "macOS-latest"
19-
cppVer: "CXX11"
2016
pool:
2117
vmImage: $(imageName)
2218

@@ -40,11 +36,6 @@ jobs:
4036
sudo apt-get install -qq valgrind
4137
displayName: Setup valgrind
4238
condition: eq(variables['Agent.OS'], 'Linux')
43-
- script: |
44-
echo CXX_STD = $(cppVer) >> Makevars
45-
workingDirectory: r-package/policytree/src
46-
displayName: Specify CXX_STD in R Makevars
47-
condition: ne(variables['Agent.OS'], 'Linux')
4839
- script: |
4940
curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
5041
./run.sh bootstrap

0 commit comments

Comments
 (0)