This repository was archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
86 lines (68 loc) · 1.8 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
---
name: CI
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
formatting-and-quality:
name: Formatting and Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
run: rustup component add clippy rustfmt
- name: Format
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -Dwarnings
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and Test
run: cargo test
release-builds:
name: Build
if: ${{ github.ref_name == 'main' || github.ref_type == 'tag' }}
needs:
- build-and-test
- formatting-and-quality
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-musl
steps:
- uses: actions/checkout@v4
- name: Setup
run: cargo install cross
- name: Build
id: cross-build
run: |
cross build --release --target ${{ matrix.platform }}
cp "target/${{ matrix.platform }}/release/remote-closedown" "remote-closedown-${{ matrix.platform }}"
- name: Store binary
uses: actions/upload-artifact@v4
with:
name: "remote-closedown-${{ matrix.platform }}"
path: "remote-closedown-${{ matrix.platform }}"
release:
name: Release
if: ${{ github.ref_type == 'tag' }}
needs:
- release-builds
runs-on: ubuntu-latest
steps:
- name: Download binaries
uses: actions/download-artifact@v4
- name: Publish release
uses: softprops/action-gh-release@v2
with:
files: remote-closedown-*/remote-closedown-*
fail_on_unmatched_files: true