-
Notifications
You must be signed in to change notification settings - Fork 13
80 lines (66 loc) · 2.08 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
name: Continuous Integration
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test Suite (${{ matrix.os }}, rust-${{ matrix.rust }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
rust: stable
- os: ubuntu-latest
rust: nightly
- os: macos-latest
rust: stable
env:
GPGME_DEBUG: 9
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies (Linux)
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt-get install -y --no-install-recommends libgpgme11-dev
- name: Install dependencies (macOS)
if: startsWith(matrix.os, 'macos')
run: brew install gpgme
- name: Install rust
run: rustup default ${{ matrix.rust }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --no-fail-fast
docker-static:
name: Test Suite (linux, docker, musl)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build docker container
run: docker build -f docker/Dockerfile.static -t test-build .
- name: Run tests in container
run: docker run test-build
docker-windows:
name: Test Suite (windows, docker)
runs-on: windows-2022
continue-on-error: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build docker container
run: docker build --build-arg WIN_VARIANT=ltsc2022 -f docker/Dockerfile.windows -t test-build .
- name: Run tests in container
run: docker run test-build
semver:
name: Check semver violations
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y --no-install-recommends libgpgme11-dev
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2