File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 28
28
- name : Setup
29
29
uses : eddelbuettel/github-actions/r-ci@master
30
30
31
- - name : Sys.info
32
- run : Rscript -e 'print(Sys.info()); print(.Platform)'
33
-
34
31
- name : Dependencies
35
32
run : ./run.sh install_deps
36
33
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ Rcpp::sourceCpp("cpp/sugar.cpp")
24
24
# # There are some (documented, see https://blog.r-project.org/2020/11/02/will-r-work-on-apple-silicon/index.html)
25
25
# # issues with NA propagation on arm64 / macOS. We not (yet ?) do anything special so we just skip some tests
26
26
isArmMacOs <- Sys.info()[[" sysname" ]] == " Darwin" && Sys.info()[[" machine" ]] == " arm64"
27
- # # This also seems to hit arm64 on Linux
28
- isArmLinux <- Sys.info()[[" sysname" ]] == " Linux" && Sys.info()[[" machine" ]] == " arm64 "
27
+ # # This also seems to hit arm64 on Linux (aka 'aarch64' here)
28
+ isArmLinux <- Sys.info()[[" sysname" ]] == " Linux" && Sys.info()[[" machine" ]] == " aarch64 "
29
29
30
30
# # Needed for a change in R 3.6.0 reducing a bias in very large samples
31
31
suppressWarnings(RNGversion(" 3.5.0" ))
You can’t perform that action at this time.
0 commit comments