-
Notifications
You must be signed in to change notification settings - Fork 0
140 lines (113 loc) · 3.69 KB
/
publish_crate.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: Build and upload Rust crate
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
check_fmt:
name: Check format
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check format
run: cargo fmt --check
check_clippy:
name: Check clippy
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Setup clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy --all-targets -- -D warnings
# run_tests:
# name: Run tests
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout reposistory
# uses: actions/checkout@v4
#
# - name: Setup Rust toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# override: true
#
# - name: Run tests
# run: cargo test --workspace
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
needs: [check_fmt, check_clippy] # run_tests
strategy:
fail-fast: false
matrix:
target:
- x86_64-pc-windows-gnu
- x86_64-pc-windows-msvc
- x86_64-apple-darwin
- aarch64-apple-darwin
- x86_64-unknown-linux-musl
- x86_64-unknown-linux-gnu
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Build cli
run: cargo build --release --target ${{ matrix.target }}
- name: Move files for packaging
run: |
mkdir -p package/
cp target/${{ matrix.target }}/release/slinky-cli package/ || cp target/${{ matrix.target }}/release/slinky-cli.exe package/
cp LICENSE package/slinky-cli.LICENSE
cp README.md package/slinky-cli.README.md
tree package
- name: Package .tar.gz
run: |
cd package && tar -czf ../slinky-cli-${{ matrix.crate-type }}-${{ matrix.target }}.tar.gz *
- name: Upload .tar.gz artifact
uses: actions/upload-artifact@v3
with:
name: slinky-cli-${{ matrix.crate-type }}-${{ matrix.target }}
path: |
slinky-cli-${{ matrix.crate-type }}-${{ matrix.target }}.tar.gz
if-no-files-found: error
- name: Publish .tar.gz release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') && matrix.archive == 'tar.gz'
with:
files: slinky-cli-${{ matrix.crate-type }}-${{ matrix.target }}.tar.gz
publish:
name: Publish
runs-on: ubuntu-latest
needs: [check_fmt, check_clippy] # run_tests
steps:
- name: Checkout reposistory
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build Rust package
run: cargo build --release --workspace
- name: Publish dry run
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/')
run: cargo publish --dry-run
- name: Upload crate
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}