-
Notifications
You must be signed in to change notification settings - Fork 25
123 lines (101 loc) · 2.9 KB
/
rust.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
name: Rust
on: [push, pull_request, workflow_dispatch]
env:
SHELL: /bin/bash
CARGO_TERM_COLOR: never
SCCACHE_GHA_ENABLED: "true"
CC: clang
CXX: clang++
CCACHE: sccache
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-13]
rust: [stable, beta]
include:
- os: windows-latest
id: windows
- os: macos-13
id: macos
- os: ubuntu-latest
id: linux
env:
SCCACHE_CACHE_SIZE: 2G
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Setup Dependencies
uses: ./.github/actions/setup
with:
os: ${{ matrix.id }}
cache-id: ${{ matrix.id }}
- name: Build Windows
if: matrix.id == 'windows'
env:
MOZTOOLS_PATH: ${{ github.workspace }}\\target\\dependencies\\moztools-4.0
CC: clang-cl
CXX: clang-cl
AR: llvm-lib
LINKER: lld-link
run: |
just build-release -v
just test-release -v
Rename-Item -Path .\target\release\cli.exe -NewName spiderfire.exe
- name: Build POSIX
if: matrix.id == 'macos' || matrix.id == 'linux'
env:
RUSTC_WRAPPER: sccache
run: |
just build-release -v
just test-release -v
mv ./target/release/cli ./target/release/spiderfire
strip ./target/release/spiderfire
- name: Upload Executables as Artifacts
uses: actions/upload-artifact@v3
if: matrix.rust == 'stable'
with:
name: spiderfire-${{ github.sha }}-${{ matrix.id }}
path: target/release/spiderfire${{ matrix.id == 'windows' && '.exe' || '' }}
if-no-files-found: error
lint:
runs-on: ubuntu-latest
env:
SCCACHE_CACHE_SIZE: 1G
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Setup Dependencies
uses: ./.github/actions/setup
with:
cache-id: lint
- name: Lint
env:
RUSTC_WRAPPER: sccache
run: just lint
unused-dependencies:
runs-on: ubuntu-latest
env:
SCCACHE_CACHE_SIZE: 1G
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Setup Dependencies
uses: ./.github/actions/setup
with:
cache-id: udeps
- name: Install cargo-udeps
uses: taiki-e/install-action@cargo-udeps
- name: Check for Unused Dependencies
env:
RUSTC_WRAPPER: sccache
run: cargo udeps --all-targets --locked