-
Notifications
You must be signed in to change notification settings - Fork 0
138 lines (116 loc) · 3.83 KB
/
rust-compiler-builder.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
name: Rust Compiler Builder
on:
push:
paths-ignore:
- '**/README.md'
schedule:
# https://crontab.guru/
# At 12:00 AM, only on Monday
- cron: 0 0 * * 1
jobs:
build:
name: ${{ matrix.rust-targets }}_${{ matrix.xcode-version }} [${{ matrix.os }}]
strategy:
fail-fast: false
matrix:
include:
# https://github.com/actions/runner-images/tree/main/images/macos
# https://developer.apple.com/support/xcode/
- rust-targets: arm64e-apple-ios
os: macos-13
xcode-version: 15.0.1
rust-config: configure-with-llvm
rust-verbose-level: 0
macosx_deployment_target: 11.0
iphoneos_deployment_target: 14.0
- rust-targets: arm64e-apple-ios
os: macos-13
xcode-version: 14.3.1
rust-config: configure
rust-verbose-level: 0
macosx_deployment_target: 11.0
iphoneos_deployment_target: 14.0
- rust-targets: aarch64-apple-ios
os: macos-13
xcode-version: 15.0.1
rust-config: configure
rust-verbose-level: 0
- rust-targets: arm64e-apple-darwin
os: macos-13
xcode-version: 15.0.1
rust-config: configure-with-llvm
rust-verbose-level: 0
macosx_deployment_target: 11.0
iphoneos_deployment_target: 14.0
- rust-targets: arm64e-apple-darwin
os: macos-13
xcode-version: 14.3.1
rust-config: configure
rust-verbose-level: 0
macosx_deployment_target: 11.0
iphoneos_deployment_target: 14.0
- rust-targets: aarch64-apple-darwin
os: macos-13
xcode-version: 15.0.1
rust-config: configure
rust-verbose-level: 0
runs-on: ${{ matrix.os }}
env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macosx_deployment_target }}
IPHONEOS_DEPLOYMENT_TARGET: ${{ matrix.iphoneos_deployment_target }}
RUST_TARGETS: ${{ matrix.rust-targets }}
steps:
- name: Xcode Select Version
uses: mobiledevops/xcode-select-version-action@v1
with:
xcode-select-version: ${{ matrix.xcode-version }}
- name: Install Ninja
run: brew install ninja
- name: Install sccache
run: brew install sccache
- name: Install llvm
run: |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install llvm
echo "PATH=$PATH:/usr/local/opt/llvm/bin" >> $GITHUB_ENV
- name: Show System Info
run: |
echo $PATH
uname -a
xcodebuild -version
xcrun --show-sdk-path
sccache --version
cmake --version
ninja --version
clang -v
ld -v
lld -flavor ld --version
- name: Checkout
uses: actions/checkout@v4
- name: Checkout Rust
uses: actions/checkout@v4
with:
repository: rust-lang/rust
submodules: true
path: rust
- name: Configure Rust
run: make ${{ matrix.rust-config }}
env:
RUST_VERBOSE: ${{ matrix.rust-verbose-level }}
- name: Build Rust
run: make all
working-directory: ./rust
- name: Show Target Spec
run: make show-target-info
- name: Build Rust dist
run: make dist
working-directory: ./rust
- name: Archive Rust dist
uses: actions/upload-artifact@v4
with:
name: rust-${{ matrix.rust-targets }}_${{ matrix.xcode-version }}-${{ matrix.os }}
path: ./rust/build/dist/*.xz
- name: Archive target spec
uses: actions/upload-artifact@v4
with:
name: rust-${{ matrix.rust-targets }}_${{ matrix.xcode-version }}-spec
path: ./*.json