-
Notifications
You must be signed in to change notification settings - Fork 124
522 lines (496 loc) · 27.7 KB
/
metal-cpp-golang-rust.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
name: METAL-C++/Go/RUST
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
spelling-checker:
name: Check Spelling
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
# https://github.com/codespell-project/actions-codespell?tab=readme-ov-file#parameter-skip
skip: ./**/target,./**/build,./docs/*.js,./docs/*.json,./*.svg
# https://github.com/codespell-project/actions-codespell?tab=readme-ov-file#parameter-ignore_words_file
ignore_words_file: .codespellignore
# check-changed-files:
# uses: ./.github/workflows/check-changed-files.yml
# ### Assume formatting is done in linux CI TODO separate to files and run once
# # check-format:
# # name: Check Code Format
# # runs-on: ubuntu-22.04
# # needs: check-changed-files
# # container:
# # image: silkeh/clang:19-bookworm # Replace with a container having the desired clang-format version
# # steps:
# # - name: Checkout
# # uses: actions/checkout@v4
# # - name: Setup go
# # if: needs.check-changed-files.outputs.golang == 'true'
# # uses: actions/setup-go@v5
# # with:
# # go-version: '1.22.0'
# # - name: Check clang-format
# # if: needs.check-changed-files.outputs.cpp == 'true'
# # run: |
# # clang-format --version
# # ./scripts/format_all.sh . --check --exclude "build|wrappers"
# # - name: Check gofmt
# # if: needs.check-changed-files.outputs.golang == 'true'
# # run: if [[ $(go list ./... | xargs go fmt) ]]; then echo "Please run go fmt"; exit 1; fi
# # - name: Check rustfmt
# # if: needs.check-changed-files.outputs.rust == 'true'
# # working-directory: ./wrappers/rust
# # # "-name target -prune" removes searching in any directory named "target"
# # # Formatting by single file is necessary due to generated files not being present
# # # before building the project.
# # # e.g. icicle-metal-runtime/src/bindings.rs is generated and icicle-metal-runtime/src/lib.rs includes that module
# # # causing rustfmt to fail.
# # run: if [[ $(find . -path ./icicle-curves/icicle-curve-template -prune -o -name target -prune -o -iname *.rs -print | xargs cargo fmt --check --) ]]; then echo "Please run cargo fmt"; exit 1; fi
# extract-metal-backend-branch:
# uses: ./.github/workflows/extract-backend.yml
# with:
# pr-number: ${{ github.event.pull_request.number }}
# backend-type: metal
# test-metal-curve:
# name: Test curve on macOS
# runs-on: [self-hosted, macOS, arm64, icicle, metal]
# needs: [check-changed-files, extract-metal-backend-branch]
# strategy:
# matrix:
# curve: # No extension field support currently TODO
# - name: bn254
# build_args: -DG2=OFF -DECNTT=OFF
# - name: bls12_381
# build_args: -DG2=OFF -DECNTT=OFF
# - name: bls12_377
# build_args: -DG2=OFF -DECNTT=OFF
# - name: bw6_761
# build_args: -DG2=OFF -DECNTT=OFF
# - name: grumpkin
# build_args: -DG2=OFF -DECNTT=OFF
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v4
# - name: Checkout METAL Backend
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# uses: actions/checkout@v4
# with:
# repository: ingonyama-zk/icicle-metal-backend
# path: ./icicle/backend/metal
# ssh-key: ${{ secrets.METAL_PULL_KEY }}
# ref: ${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}
# - name: Get METAL Backend Commit SHA
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# working-directory: ./icicle/backend/metal
# id: extract-metal-sha
# run: |
# METAL_BACKEND_SHA=$(git rev-parse HEAD)
# echo "METAL Backend Commit SHA: $METAL_BACKEND_SHA"
# echo "metal-backend-sha=$METAL_BACKEND_SHA" >> $GITHUB_OUTPUT
# - name: Set METAL backend flag
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# id: metal-flag
# run: |
# METAL_BACKEND_SHA=${{ steps.extract-metal-sha.outputs.metal-backend-sha }}
# CURVE=${{ matrix.curve.name }}
# COMMIT_FILE="gh_commit_sha_${CURVE}_${METAL_BACKEND_SHA}"
# if [ "${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}" == "main" ]; then
# INSTALL_PATH=${{ github.workspace }}/../../main_lib/curve/$CURVE
# echo "INSTALL_PATH=${{ github.workspace }}/../../main_lib/curve/$CURVE" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# else
# INSTALL_PATH=${{ github.workspace }}/../../temp_lib/curve/$CURVE
# echo "INSTALL_PATH=${{ github.workspace }}/../../temp_lib/curve/$CURVE" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# fi
# - name: Build curve
# working-directory: ./icicle
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# run: |
# mkdir -p build && rm -rf build/*
# cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DCURVE=${{ matrix.curve.name }} ${{ matrix.curve.build_args }} ${{ steps.metal-flag.outputs.METAL_FLAG }} ${{ steps.metal-flag.outputs.CMAKE_INSTALL_PREFIX }} -S . -B build
# cmake --build build --target install -j
# rm -rf ${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib/gh_commit_sha_${{ matrix.curve.name }}*
# touch ${{ steps.metal-flag.outputs.COMMIT_FILE_PATH }}
# - name: Run C++ Curve Tests
# working-directory: ./icicle/build/tests
# if: needs.check-changed-files.outputs.cpp == 'true'
# run: | # Exclude un-implemented features from field tests
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# ctest --output-on-failure -E ".*Sumcheck.*|.*Program.*|.*HashApiTest.*"
# - name: Run C++ examples
# working-directory: ./examples/c++
# if: needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.examples == 'true'
# run: |
# CURVE=${{ matrix.curve.name }}
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# for dir in $(grep -l -r "\\-DCURVE=$CURVE" . | xargs -L1 dirname | sort -u); do
# if [ -d "$dir" ]; then
# echo "Running command in $dir"
# cd $dir
# ./run.sh -d METAL
# cd -
# fi
# done
# - name: Run RUST Curve Tests
# working-directory: ./wrappers/rust/icicle-curves
# if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# CURVE=${{ matrix.curve.name }}
# CURVE_DIR=icicle-${CURVE//_/-}
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.INSTALL_PATH }}
# cd ./$CURVE_DIR
# cargo test --release --verbose --features no_ecntt,no_g2 -- --skip phase --skip hash --skip tree --skip test_ntt_arbitrary_coset --skip test_ntt_coset_interpolation_nm --skip test_ntt_batch --skip test_ntt_device_async --skip sumcheck
# cargo test phase2 --release --features no_ecntt,no_g2
# cargo test phase3 --release --features no_ecntt,no_g2
# - name: Setup go
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# timeout-minutes: 15
# uses: actions/setup-go@v5
# with:
# go-version: '1.22.0'
# - name: Run Golang curve Tests
# working-directory: ./wrappers/golang/curves
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# CURVE=${{ matrix.curve.name }}
# CURVE_DIR=$(echo ${{ matrix.curve.name }} | sed -e 's/_//g')
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# export LD_LIBRARY_PATH=${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib
# export CGO_LDFLAGS="-L$LD_LIBRARY_PATH -licicle_field_$CURVE -licicle_curve_$CURVE -lstdc++ -Wl,-rpath=LD_LIBRARY_PATH"
# go test ./$CURVE_DIR/tests -count=1 -failfast -p 2 -timeout 60m -v
# test-linux-field:
# name: Test field on macOS
# runs-on: [self-hosted, macOS, arm64, icicle, metal]
# needs: [check-changed-files, extract-metal-backend-branch]
# strategy:
# matrix:
# field:
# - name: babybear
# build_args: -DEXT_FIELD=OFF
# - name: stark252
# build_args: -DEXT_FIELD=OFF
# - name: m31
# build_args: -DEXT_FIELD=OFF
# - name: koalabear
# build_args: -DEXT_FIELD=OFF
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v4
# - name: Checkout METAL Backend
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# uses: actions/checkout@v4
# with:
# repository: ingonyama-zk/icicle-metal-backend
# path: ./icicle/backend/metal
# ssh-key: ${{ secrets.METAL_PULL_KEY }}
# ref: ${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}
# - name: Get METAL Backend Commit SHA
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# working-directory: ./icicle/backend/metal
# id: extract-metal-sha
# run: |
# METAL_BACKEND_SHA=$(git rev-parse HEAD)
# echo "METAL Backend Commit SHA: $METAL_BACKEND_SHA"
# echo "metal-backend-sha=$METAL_BACKEND_SHA" >> $GITHUB_OUTPUT
# - name: Set METAL backend flag
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# id: metal-flag
# run: |
# METAL_BACKEND_SHA=${{ steps.extract-metal-sha.outputs.metal-backend-sha }}
# FIELD=${{ matrix.field.name }}
# COMMIT_FILE="gh_commit_sha_${FIELD}_${METAL_BACKEND_SHA}"
# if [ "${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}" == "main" ]; then
# INSTALL_PATH=${{ github.workspace }}/../../main_lib/field/$FIELD
# echo "INSTALL_PATH=${{ github.workspace }}/../../main_lib/field/$FIELD" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# else
# INSTALL_PATH=${{ github.workspace }}/../../temp_lib/field/$FIELD
# echo "INSTALL_PATH=${{ github.workspace }}/../../temp_lib/field/$FIELD" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# fi
# - name: Build field
# working-directory: ./icicle
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# run: |
# mkdir -p build && rm -rf build/*
# cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DFIELD=${{ matrix.field.name }} ${{ matrix.field.build_args }} ${{ steps.metal-flag.outputs.METAL_FLAG }} ${{ steps.metal-flag.outputs.CMAKE_INSTALL_PREFIX }} -S . -B build
# cmake --build build --target install -j
# rm -rf ${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib/gh_commit_sha_${{ matrix.field.name }}*
# touch ${{ steps.metal-flag.outputs.COMMIT_FILE_PATH }}
# - name: Run C++ field Tests
# working-directory: ./icicle/build/tests
# if: needs.check-changed-files.outputs.cpp == 'true'
# run: | # Exclude un-implemented features from field tests
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# ctest --output-on-failure -E ".*Sumcheck.*|.*Program.*|.*HashApiTest.*"
# - name: Run C++ examples
# working-directory: ./examples/c++
# if: needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.examples == 'true'
# run: |
# FIELD=${{ matrix.field.name }}
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# for dir in $(grep -l -r "\\-DFIELD=$FIELD" . | xargs -L1 dirname | sort -u); do
# if [ -d "$dir" ]; then
# echo "Running command in $dir"
# cd $dir
# ./run.sh -d METAL
# cd -
# fi
# done
# - name: Run RUST Field Tests
# working-directory: ./wrappers/rust/icicle-fields
# if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# FIELD=${{ matrix.field.name }}
# FIELD_DIR=icicle-${FIELD//_/-}
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.INSTALL_PATH }}
# cd ./$FIELD_DIR
# cargo test --release --verbose -- --skip phase --skip hash --skip tree --skip test_ntt_arbitrary_coset --skip test_ntt_coset_interpolation_nm --skip test_ntt_batch --skip test_ntt_device_async --skip sumcheck
# cargo test phase2 --release
# cargo test phase3 --release
# - name: Setup go
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# timeout-minutes: 15
# uses: actions/setup-go@v5
# with:
# go-version: '1.22.0'
# - name: Run Golang field Tests
# working-directory: ./wrappers/golang/fields
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# FIELD=${{ matrix.field.name }}
# FIELD_DIR=$(echo ${{ matrix.field.name }} | sed -e 's/_//g')
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# export LD_LIBRARY_PATH=${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib
# export CGO_LDFLAGS="-L$LD_LIBRARY_PATH -licicle_field_$FIELD -lstdc++ -Wl,-rpath=LD_LIBRARY_PATH"
# if [ -d "./$FIELD/tests" ]; then
# echo "Running tests for $FIELD..."
# go test ./$FIELD_DIR/tests -count=1 -failfast -p 2 -timeout 60m -v
# else
# echo "Folder ./$FIELD_DIR/tests does not exist. Skipping tests for $FIELD."
# fi
# test-linux-hash:
# name: Build and test Go & RUST hash on macOS
# runs-on: [self-hosted, macOS, arm64, icicle, metal]
# needs: [check-changed-files, extract-metal-backend-branch]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v4
# - name: Checkout METAL Backend
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# uses: actions/checkout@v4
# with:
# repository: ingonyama-zk/icicle-metal-backend
# path: ./icicle/backend/metal
# ssh-key: ${{ secrets.METAL_PULL_KEY }}
# ref: ${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}
# - name: Get METAL Backend Commit SHA
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# working-directory: ./icicle/backend/metal
# id: extract-metal-sha
# run: |
# METAL_BACKEND_SHA=$(git rev-parse HEAD)
# echo "METAL Backend Commit SHA: $METAL_BACKEND_SHA"
# echo "metal-backend-sha=$METAL_BACKEND_SHA" >> $GITHUB_OUTPUT
# - name: Set METAL backend flag
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# id: metal-flag
# run: |
# METAL_BACKEND_SHA=${{ steps.extract-metal-sha.outputs.metal-backend-sha }}
# COMMIT_FILE="gh_commit_sha_hash_${METAL_BACKEND_SHA}"
# if [ "${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}" == "main" ]; then
# INSTALL_PATH=${{ github.workspace }}/../../main_lib/hash
# echo "INSTALL_PATH=${{ github.workspace }}/../../main_lib/hash" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# else
# INSTALL_PATH=${{ github.workspace }}/../../temp_lib/hash
# echo "INSTALL_PATH=${{ github.workspace }}/../../temp_lib/hash" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# fi
# - name: Build
# working-directory: ./icicle
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true' || needs.check-changed-files.outputs.rust == 'true'
# # builds the hash and merkle tree lib using a local copy of the METAL backend
# run: |
# mkdir -p build && rm -rf build/*
# cmake -DCMAKE_BUILD_TYPE=Release -DHASH=ON ${{ steps.metal-flag.outputs.METAL_FLAG }} ${{ steps.metal-flag.outputs.CMAKE_INSTALL_PREFIX }} -S . -B build
# cmake --build build --target install -j
# rm -rf ${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib/gh_commit_sha_hash*
# touch ${{ steps.metal-flag.outputs.COMMIT_FILE_PATH }}
# - name: Run RUST Hash Tests
# working-directory: ./wrappers/rust/icicle-hash
# if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.INSTALL_PATH }}
# cargo test --release --verbose -- --skip phase
# cargo test phase2 --release
# cargo test phase3 --release
# - name: Setup go
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# timeout-minutes: 15
# uses: actions/setup-go@v5
# with:
# go-version: '1.22.0'
# - name: Test GoLang Hashes
# working-directory: ./wrappers/golang/hash
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# export LD_LIBRARY_PATH=${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib
# export CGO_LDFLAGS="-L$LD_LIBRARY_PATH -licicle_hash -lstdc++ -Wl,-rpath=LD_LIBRARY_PATH"
# go test ./tests -count=1 -failfast -p 2 -timeout 60m -v
# - name: Test GoLang Merkle Tree
# working-directory: ./wrappers/golang/merkle-tree
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# run: |
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# export LD_LIBRARY_PATH=${{ steps.metal-flag.outputs.INSTALL_PATH }}/lib
# export CGO_LDFLAGS="-L$LD_LIBRARY_PATH -licicle_hash -lstdc++ -Wl,-rpath=LD_LIBRARY_PATH"
# go test ./tests -count=1 -failfast -p 2 -timeout 60m -v
# run-rust-examples:
# name: Run Rust Examples
# runs-on: [self-hosted, macOS, arm64, icicle, metal]
# needs: [check-changed-files, extract-metal-backend-branch]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v4
# - name: Checkout METAL Backend
# uses: actions/checkout@v4
# with:
# repository: ingonyama-zk/icicle-metal-backend
# path: ./icicle/backend/metal
# ssh-key: ${{ secrets.METAL_PULL_KEY }}
# ref: ${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}
# - name: Get METAL Backend Commit SHA
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# working-directory: ./icicle/backend/metal
# id: extract-metal-sha
# run: |
# METAL_BACKEND_SHA=$(git rev-parse HEAD)
# echo "METAL Backend Commit SHA: $METAL_BACKEND_SHA"
# echo "metal-backend-sha=$METAL_BACKEND_SHA" >> $GITHUB_OUTPUT
# - name: Set METAL backend flag
# if: needs.check-changed-files.outputs.golang == 'true' || needs.check-changed-files.outputs.cpp == 'true'
# id: metal-flag
# run: |
# METAL_BACKEND_SHA=${{ steps.extract-metal-sha.outputs.metal-backend-sha }}
# COMMIT_FILE="gh_commit_sha_hash_${METAL_BACKEND_SHA}"
# if [ "${{ needs.extract-metal-backend-branch.outputs.metal-backend-branch }}" == "main" ]; then
# INSTALL_PATH=${{ github.workspace }}/../../main_lib/rust-examples
# echo "INSTALL_PATH=${{ github.workspace }}/../../main_lib/rust-examples" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# else
# INSTALL_PATH=${{ github.workspace }}/../../temp_lib/rust-examples
# echo "INSTALL_PATH=${{ github.workspace }}/../../temp_lib/rust-examples" >> $GITHUB_OUTPUT
# COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}
# echo "COMMIT_FILE_PATH=${INSTALL_PATH}/lib/${COMMIT_FILE}" >> $GITHUB_OUTPUT
# if [ -f "$COMMIT_FILE_PATH" ]; then
# echo "${COMMIT_FILE} exists in ${INSTALL_PATH}/lib. Setting METAL_FLAG="
# echo "METAL_FLAG=" >> $GITHUB_OUTPUT
# else
# echo "${COMMIT_FILE} does not exist in ${INSTALL_PATH}/lib. Setting METAL_FLAG=-DMETAL_BACKEND=local"
# echo "METAL_FLAG=-DMETAL_BACKEND=local" >> $GITHUB_OUTPUT
# rm -rf ${INSTALL_PATH}
# fi
# echo "CMAKE_INSTALL_PREFIX=-DCMAKE_INSTALL_PREFIX=${INSTALL_PATH}" >> $GITHUB_OUTPUT
# echo "ICICLE_BACKEND_INSTALL_DIR=${INSTALL_PATH}/lib" >> $GITHUB_OUTPUT
# fi
# - name: Rust examples
# working-directory: ./examples/rust
# if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.examples == 'true'
# run: |
# export ICICLE_BACKEND_INSTALL_DIR=${{ steps.metal-flag.outputs.ICICLE_BACKEND_INSTALL_DIR }}
# export RUST_ICICLE_BACKEND_INSTALL_DIR=$ICICLE_BACKEND_INSTALL_DIR/backend
# # loop over all directories in the current directory
# for dir in $(find . -mindepth 1 -maxdepth 1 -type d); do
# if [ -d "$dir" ]; then
# echo "Running command in $dir"
# cd $dir
# ./run.sh -d METAL
# cd -
# fi
# done