-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (39 loc) · 1.07 KB
/
build-check.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
name: Check if Psh can build
on:
push:
pull_request:
env:
RUST_BACKTRACE: 1
jobs:
build:
name: Build Check
runs-on: ${{ matrix.os }}
strategy:
matrix:
# we only need to support linux
os: [ubuntu-20.04, ubuntu-latest]
# TODO: do we want to support musl?
target: [x86_64-unknown-linux-gnu]
# make sure it runs on latest stable rust
toolchain: [stable]
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout/@v4
- name: Install Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Show environment information
uses: ./.github/actions/show-env
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Build Psh
uses: ./.github/actions/build
with:
target: ${{ matrix.target }}
release: false