-
Notifications
You must be signed in to change notification settings - Fork 8
161 lines (140 loc) · 4.05 KB
/
ci.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
on:
push:
branches: [ main ]
pull_request:
name: CI
jobs:
test:
name: Cargo test (${{ matrix.os }})
runs-on: ${{ matrix. os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose --examples
- name: Test
run: cargo test --release
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check # Also fmt subdirectories
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all -- -D warnings
R-CMD-check:
name: R CMD check (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest'] # TODO: Add windows here
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: 'release'
use-public-rspm: true
- uses: actions-rs/toolchain@v1
with:
toolchain: 'stable'
- name: Install dependencies
run: |
install.packages(c("R6", "testthat", "rcmdcheck"), repos="http://cran.us.r-project.org")
shell: Rscript {0}
- name: Run R CMD check
run: |
R CMD check --as-cran --no-vignettes --no-manual ./changeforest-r
env:
_R_CHECK_CRAN_INCOMING_: false
if: matrix.os != 'windows-latest'
- name: Check for warnings
run: |
CHECK_LOG_FILE=changeforest-r.Rcheck/00check.log
CHECK_INSTALL_FILE=changeforest-r.Rcheck/00install.out
if ! [[ -f "$CHECK_LOG_FILE" ]]; then
echo "Log-file not found."
exit 1
fi
if cat $CHECK_LOG_FILE | grep -q "ERROR"; then
cat $CHECK_INSTALL_FILE
cat $CHECK_LOG_FILE
exit 1
fi
if cat $CHECK_LOG_FILE | grep -q "WARNING"; then
echo "Found warnings, treated as errors."
cat $CHECK_LOG_FILE
exit 1
fi
# e: pipefail
# x: print commands
# u: unset variables are errors
# l: as login script
shell: bash -lxu {0}
if: matrix.os != 'windows-latest'
python-tests:
name: Python tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.9]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
MPLBACKEND: Agg # https://github.com/orgs/community/discussions/26434
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: 'stable'
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build wheel
run: |
pip install --upgrade maturin
maturin build --release -m changeforest-py/Cargo.toml
- name: Install wheel
run: |
pip install numpy matplotlib pytest
pip install --force-reinstall --no-index --find-links changeforest-py/target/wheels/ changeforest
- name: Run tests
run: pytest changeforest-py/tests