-
-
Notifications
You must be signed in to change notification settings - Fork 34
71 lines (67 loc) · 1.77 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
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule: # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onschedule
- cron: '0 0 * * 0' # at midnight of each sunday
workflow_dispatch:
name: CI
jobs:
develop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- 1.70.0 # MSRV
- stable
- nightly
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- uses: taiki-e/install-action@v2
with:
tool: just
- run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings
- run: cargo test --all-features
- run: |
just codegen
./scripts/assert-unchanged.sh
- run: cargo install --path crates/s3s-fs --features binary
cross-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
toolchain:
- stable
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --all-features
mint:
name: e2e (s3s-proxy, mint)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- run: docker pull minio/mint:edge
- run: docker pull minio/minio:latest
- run: cargo install --path crates/s3s-proxy
- run: ./scripts/e2e-mint.sh
- run: ./scripts/report-mint.py /tmp/mint/log.json