-
Notifications
You must be signed in to change notification settings - Fork 3
110 lines (93 loc) · 3.33 KB
/
build-dev.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
name: Build / Development
on:
push:
branches:
- '*'
pull_request_target:
types:
- edited
- opened
- reopened
- synchronize
jobs:
build-dev:
name: ${{ matrix.targets.alias }}
runs-on: ${{ matrix.targets.os }}
strategy:
fail-fast: false
matrix:
targets:
# aarch64
- { os: macos-11 , target: aarch64-apple-darwin , alias: aarch64-darwin-macos-11 }
- { os: macos-12 , target: aarch64-apple-darwin , alias: aarch64-darwin-macos-12 }
- { os: macos-13 , target: aarch64-apple-darwin , alias: aarch64-darwin-macos-13 }
# amd64
- { os: macos-12 , target: x86_64-apple-darwin , alias: amd64-darwin-macos-unknown }
- { os: ubuntu-20.04, target: x86_64-unknown-linux-gnu , alias: amd64-gnu-ubuntu-20.04 }
- { os: ubuntu-22.04, target: x86_64-unknown-linux-gnu , alias: amd64-gnu-ubuntu-22.04 }
- { os: ubuntu-22.04, target: x86_64-unknown-linux-musl, alias: amd64-musl-linux-unknown }
- { os: windows-2019, target: x86_64-pc-windows-msvc , alias: amd64-msvc-windows-2019 }
- { os: windows-2022, target: x86_64-pc-windows-msvc , alias: amd64-msvc-windows-2022 }
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
toolchain: nightly-2023-09-06
components: rustfmt, clippy
- name: Show Rust toolchain version
shell: bash
run: |
cargo -V
cargo clippy -V
cargo fmt -- -V
rustc -V
- name: Setup musl-tools
if: matrix.targets.target == 'x86_64-unknown-linux-musl'
shell: bash
run: sudo apt -y install musl-tools
- name: Add target
uses: ./.github/actions/add-target
with:
target: ${{ matrix.targets.target }}
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ matrix.targets.alias }}
- name: Generate version
id: gen-version
shell: bash
run: echo 'VERSION=0.0.0-${{ github.sha }}' >> $GITHUB_OUTPUT
- name: Replace version
uses: ./.github/actions/replace-version
with:
version: ${{ steps.gen-version.outputs.VERSION }}
- name: Run check
uses: ./.github/actions/check
- name: Run test
uses: ./.github/actions/test
- name: Run build
uses: ./.github/actions/build
with:
target: ${{ matrix.targets.target }}
release: false
- name: Generate artifacts name
id: gen-name
shell: bash
run: echo 'NAME=cnb-dev-${{ matrix.targets.alias }}' >> $GITHUB_OUTPUT
- name: Generate binary extension
id: gen-ext
if: runner.os == 'Windows'
shell: bash
run: echo 'EXT=.exe' >> $GITHUB_OUTPUT
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ steps.gen-name.outputs.NAME }}
path: ./target/${{ matrix.targets.target }}/debug/cnb${{ steps.gen-ext.outputs.EXT }}
if-no-files-found: error