Fix undefined symbol linker error by moving sign
and secureHash
t…
#6583
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [ dev, master ] | |
pull_request: | |
branches: [ dev, master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-latest-large | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Install system dependencies | |
run: | | |
tools/install-sys-dependencies-mac | |
- name: Cache Rust | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
rust | |
- name: Install Rust dependencies | |
run: | | |
tools/install-rust-dependencies | |
- name: Install Android Dependencies | |
run: tools/install-android-dependencies | |
- name: Cache internal dependencies | |
id: internal_cache | |
uses: actions/cache@v3 | |
with: | |
path: build/local | |
key: ${{ runner.os }}-${{ runner.arch }}-internal-${{ hashFiles('tools/install-dependencies') }} | |
- name: Install internal dependencies | |
run: tools/install-dependencies | |
if: steps.internal_cache.outputs.cache-hit != 'true' | |
- name: Generate files | |
run: tools/generate-files android | |
- name: Build Kotlin doc | |
run: tools/kotlin-doc | |
- name: Build tests | |
run: | | |
pushd android | |
./gradlew assembleAndroidTest | |
popd | |
- name: Run tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 30 | |
target: google_apis | |
arch: x86 | |
ndk: 23.1.7779620 | |
cmake: 3.18.1 | |
script: cd android; ./gradlew connectedAndroidTest | |
- name: Build sample app | |
run: tools/samples-build android | |
env: | |
GITHUB_USER: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |