-
Notifications
You must be signed in to change notification settings - Fork 127
205 lines (178 loc) · 5.99 KB
/
simulators.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: Simulators
on:
schedule:
# every two days 11 PM
- cron: "0 23 */2 * *"
workflow_dispatch:
jobs:
build-linux-amd64:
name: Linux-amd64
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Get latest nimbus-build-system commit hash
id: versions
run: |
sudo apt-get -q update
sudo apt-get install -y libpcre3-dev
getHash() {
git ls-remote "https://github.com/$1" "${2:-HEAD}" | cut -f 1
}
nbsHash=$(getHash status-im/nimbus-build-system)
echo "nimbus_build_system=$nbsHash" >> $GITHUB_OUTPUT
- name: Restore prebuilt Nim from cache
uses: actions/cache@v3
with:
path: NimBinaries
key: 'nim-linux-amd64-${{ steps.versions.outputs.nimbus_build_system }}-sim'
- name: Build Nim and deps
run: |
ncpu=$(nproc)
make -j${ncpu} ARCH_OVERRIDE=x64 CI_CACHE=NimBinaries update-from-ci
make -j${ncpu} deps
- name: Run Simulators
run: |
SIM_SCRIPT="hive_integration/nodocker/build_sims.sh"
chmod +x ${SIM_SCRIPT}
${SIM_SCRIPT} "Linux-amd64"
- name: Upload artefact
uses: actions/upload-artifact@v3
with:
name: linux_amd64_stat
path: ./simulators.md
retention-days: 2
build-macos-amd64:
name: Macos-amd64
runs-on: macos-11
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Get latest nimbus-build-system commit hash
id: versions
run: |
getHash() {
git ls-remote "https://github.com/$1" "${2:-HEAD}" | cut -f 1
}
nbsHash=$(getHash status-im/nimbus-build-system)
echo "nimbus_build_system=$nbsHash" >> $GITHUB_OUTPUT
- name: Restore prebuilt Nim from cache
uses: actions/cache@v3
with:
path: NimBinaries
key: 'nim-macos-amd64-${{ steps.versions.outputs.nimbus_build_system }}-sim'
- name: Build Nim and deps
run: |
ncpu=$(sysctl -n hw.ncpu)
make -j${ncpu} ARCH_OVERRIDE=x64 CI_CACHE=NimBinaries update-from-ci
make -j${ncpu} deps
- name: Run Simulators
run: |
SIM_SCRIPT="hive_integration/nodocker/build_sims.sh"
chmod +x ${SIM_SCRIPT}
${SIM_SCRIPT} "MacOS-amd64"
- name: Upload artefact
uses: actions/upload-artifact@v3
with:
name: macos_amd64_stat
path: ./simulators.md
retention-days: 2
build-windows-amd64:
name: Windows-amd64
runs-on: windows-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Restore llvm-mingw (Windows) from cache
if: runner.os == 'Windows'
id: windows-mingw-cache
uses: actions/cache@v3
with:
path: external/mingw-amd64
key: 'mingw-llvm-17-sim'
- name: Install llvm-mingw dependency (Windows)
if: >
steps.windows-mingw-cache.outputs.cache-hit != 'true' &&
runner.os == 'Windows'
run: |
mkdir -p external
MINGW_BASE="https://github.com/mstorsjo/llvm-mingw/releases/download/20230905"
MINGW_URL="$MINGW_BASE/llvm-mingw-20230905-ucrt-x86_64.zip"
curl -L "$MINGW_URL" -o "external/mingw-amd64.zip"
7z x -y "external/mingw-amd64.zip" -oexternal/mingw-amd64/
mv external/mingw-amd64/**/* ./external/mingw-amd64
- name: Path to cached dependencies (Windows)
if: >
runner.os == 'Windows'
run: |
echo '${{ github.workspace }}'"/external/mingw-amd64/bin" >> $GITHUB_PATH
- name: Get latest nimbus-build-system commit hash
id: versions
run: |
getHash() {
git ls-remote "https://github.com/$1" "${2:-HEAD}" | cut -f 1
}
nbsHash=$(getHash status-im/nimbus-build-system)
echo "nimbus_build_system=$nbsHash" >> $GITHUB_OUTPUT
- name: Restore prebuilt Nim from cache
uses: actions/cache@v3
with:
path: NimBinaries
key: 'nim-windows-amd64-${{ steps.versions.outputs.nimbus_build_system }}-sim'
- name: Build Nim and deps
run: |
ncpu=${NUMBER_OF_PROCESSORS}
mingw32-make -j${ncpu} ARCH_OVERRIDE=x64 CI_CACHE=NimBinaries update-from-ci
mingw32-make -j${ncpu} deps
- name: Run Simulators
run: |
SIM_SCRIPT="hive_integration/nodocker/build_sims.sh"
${SIM_SCRIPT} "Windows-amd64"
- name: Upload artefact
uses: actions/upload-artifact@v3
with:
name: windows_amd64_stat
path: ./simulators.md
retention-days: 2
prepare-stat:
name: Test results
needs: [build-linux-amd64, build-macos-amd64, build-windows-amd64]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: master
- name: Download artefacts
uses: actions/download-artifact@v3
- name: Create statistics notes
run: |
cat linux_amd64_stat/* > stat_notes.md
cat macos_amd64_stat/* >> stat_notes.md
cat windows_amd64_stat/* >> stat_notes.md
- name: Delete tag
uses: dev-drprasad/delete-tag-and-release@v1.0.1
with:
delete_release: true
tag_name: sim-stat
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Simulators results
uses: ncipollo/release-action@v1
with:
allowUpdates: true
prerelease: true
commit: master
name: "Simulators results"
tag: sim-stat
bodyFile: "stat_notes.md"
- name: Delete artefacts
uses: geekyeggo/delete-artifact@v2
with:
failOnError: false
name: |
linux_amd64_stat
macos_amd64_stat
windows_amd64_stat