-
Notifications
You must be signed in to change notification settings - Fork 81
38 lines (38 loc) · 966 Bytes
/
build.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
name: build every commit
on:
push:
branches:
- master
- 'v[0-9]*'
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- run: cargo build --release
- if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
with:
path: target/release/gossip.exe
name: gossip.exe
- if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
path: target/release/gossip*
name: gossip_linux
- if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v3
with:
path: target/release/gossip*
name: gossip_macos