Skip to content

Commit 6e5605c

Browse files
committed
Reduce CI test covr to Linux only plus polish #17
1 parent f4fb90e commit 6e5605c

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/test-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
config:
22-
- { os: macos-latest, r: "release" }
23-
- { os: ubuntu-latest, r: "devel", http-user-agent: "release" }
22+
- { os: ubuntu-latest, r: "release" }
23+
# - { os: macos-latest, r: "release" }
2424

2525
env:
2626
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,5 @@ pre-commit run --all-files
158158
### Continuous integration
159159

160160
We use Github Actions to run continuous integration (CI) checks on each push and pull request. Specifically, we run:
161-
* [R CMD check](.github/workflows/R-CMD-check.yaml) on Linux, macOS, and Windows and
161+
* [R CMD check](.github/workflows/R-CMD-check.yaml) on multiple platforms and
162162
* [covr test coverage](.github/workflows/covr.yaml).

RcppTskit/cleanup

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ rm -f src/Makevars
55

66
# Removing compilation files
77
rm -f src/*.o src/tskit/*.o src/*.so
8+
9+
# Removing other files not needed for distribution
10+
rm -f WORDLIST

RcppTskit/cleanup.win

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
#!/bin/sh
22

3-
# Removing Makevars autogenerated via configure from src/Makevars.win.in
3+
# Removing Makevars autogenerated via configure from src/Makevars.in
4+
# (yes, the same template for all platforms)
45
rm -f src/Makevars.win
56

67
# Removing compilation files
78
rm -f src/*.o src/tskit/*.o src/*.dll
9+
10+
# Removing other files not needed for distribution
11+
rm -f WORDLIST

0 commit comments

Comments
 (0)