-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix minor CI jobs: - switch to latest ubuntu and macos - remove hardcoded git plugin version Resolves: MINOR-FIX Signed-off-by: Yaroslav Stefinko <ext-yaroslav.stefinko@here.com>
- Loading branch information
Showing
5 changed files
with
63 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
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-Latest. | ||
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 |
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
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
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