Fix FV/MV jobs #14
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: MV_Pipelines | |
on: | |
push: | |
branches: | |
- '*' | |
# workflow_dispatch | |
# branches: | |
# - '*' | |
# schedule: | |
# MV(as well as FV) Android and iOS only once a month. | |
# - cron: '* 5 1 * *' | |
jobs: | |
mv-build-ios-network-test: | |
name: MV / iOS clang / Network tests | |
runs-on: macos-latest | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Build with tests | |
run: ./scripts/ios/fv/gh-actions-build-with-tests-fv.sh | |
shell: bash | |
- name: Test MV Network | |
run: ./scripts/ios/fv/gh-actions-functional-network-test.sh | |
shell: bash | |
mv-android-emulator-build-test: | |
name: MV.Android.Emulator.Build.Test.API21.ABIx86_64.NDK-22. | |
runs-on: ubuntu-latest | |
env: | |
##ANDROID_NDK_HOME: $(ANDROID_HOME)/ndk-bundle | |
SEGFAULT_SIGNALS: all | |
BUILD_TYPE: RelWithDebInfo | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Verification of cmake script | |
run: ls -la ${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake && ls -la ${ANDROID_NDK_HOME}/prebuilt && ls -la ${ANDROID_NDK_HOME}/ndk-build | |
- name: Android Emulator Test | |
run: scripts/android/build-test-emulator.sh | |
shell: bash |