-
Notifications
You must be signed in to change notification settings - Fork 64
67 lines (62 loc) · 2.13 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
name: Build/Test/Release
on:
push:
branches: [ "*" ]
tags: [ "v*" ]
pull_request:
branches: [ "master" ]
jobs:
test:
name: test ${{ matrix.platforms.target }} on ${{ matrix.platforms.os }} static - ${{ matrix.static }}
strategy:
matrix:
static: [true, false]
platforms: [
{os: ubuntu-22.04, target: x86_64-unknown-linux-gnu},
{os: ubuntu-22.04, target: aarch64-unknown-linux-gnu},
{os: ubuntu-22.04, target: armv7-unknown-linux-gnueabihf},
{os: ubuntu-22.04, target: armv7-unknown-linux-gnueabi},
{os: macos-13, target: aarch64-apple-darwin},
{os: macos-13, target: x86_64-apple-darwin},
{os: windows-2022, target: x86_64-pc-windows-msvc},
]
runs-on: ${{ matrix.platforms.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ilammy/setup-nasm@v1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo check
run: cargo check --all --all-features
- name: Run cargo clippy
run: cargo clippy --all --all-features -- -D warnings
- name: Run cargo test
run: cargo test --all --all-features
- name: Build artifacts
run: sh ./scripts/build.sh "${{ matrix.platforms.target }}" "${{ matrix.static }}"
- name: Stash artifacts
uses: actions/upload-artifact@v4
with:
name: clash-${{ matrix.platforms.os }}-${{ matrix.platforms.target }}-${{ matrix.static }}
path: target/artifacts/
- name: Create Release
if: contains(github.ref, 'tags/v')
id: create_release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
- name: Upload Release Asset
if: contains(github.ref, 'tags/v')
id: upload-release-asset
uses: dwenegar/upload-release-assets@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ steps.create_release.outputs.id }}
assets_path: target/artifacts