forked from awslabs/llrt
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.19 KB
/
build-artifacts.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
name: build artifacts
on: workflow_call
jobs:
build-artifacts:
strategy:
fail-fast: ${{ startsWith(github.ref, 'refs/tags/') }}
matrix:
include:
- os: windows-latest
platform: windows
arch: x86_64
release: x64
toolchain: nightly-x86_64-pc-windows-gnu
RUSTFLAGS: -C target-feature=+crt-static
- os: ubuntu-latest
platform: linux
arch: x86_64
release: x64
toolchain: nightly
- os: ubuntu-latest
platform: linux
arch: aarch64
release: arm64
toolchain: nightly
- os: macos-latest
platform: darwin
arch: x86_64
release: x64
toolchain: nightly
- os: macos-latest
platform: darwin
arch: aarch64
release: arm64
toolchain: nightly
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
platform: ${{ matrix.platform }}
arch: ${{ matrix.arch }}
release: ${{ matrix.release }}
toolchain: ${{ matrix.toolchain }}