-
Notifications
You must be signed in to change notification settings - Fork 43
37 lines (34 loc) · 1.07 KB
/
fv_pipelines.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
name: FV_Pipelines
on:
push:
branches:
- master
jobs:
fv-build-ios-network-test:
name: FV / 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 iOS FV Network
run: ./scripts/ios/fv/gh-actions-functional-network-test.sh
shell: bash
fv-android-emulator-build-test:
name: FV.Android.Emulator.Build.Test.API21.ABIx86_64.NDK-22.
runs-on: ubuntu-latest
env:
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