Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

look up for android SDK #9

look up for android SDK

look up for android SDK #9

Workflow file for this run

name: Build
on:
push:
branches:
- main
- cibuild
jobs:
build:
runs-on: macos-13-xlarge
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: look up for android SDK
run: |
echo $ANDROID_NDK
ls /Users/runner/Library/Android/sdk
- name: Cache gmp build
uses: actions/cache@v3
with:
path: |
depends/gmp
gmp-6.2.1.tar.xz
key: ${{ runner.os }}-gmp-${{ hashFiles('build_gmp.sh') }}
- run: |
brew install libomp
if [[ ! -d "depends/gmp/package_ios_arm64" ]]; then ./build_gmp.sh ios; fi
mkdir build_prover_ios && cd build_prover_ios
cmake .. -GXcode -DTARGET_PLATFORM=IOS -DCMAKE_INSTALL_PREFIX=../package_ios
xcodebuild -destinations='platform=iOS' -scheme rapidsnarkStatic -project rapidsnark.xcodeproj -configuration Release
name: build