Skip to content

Commit

Permalink
Fix FV/MV jobs
Browse files Browse the repository at this point in the history
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
ystefinko committed Mar 18, 2024
1 parent e4d666f commit 126e602
Showing 1 changed file with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,38 +1,40 @@
name: FV_Pipelines
name: MV_Pipelines

on:
workflow_dispatch:
branches:
- '*'
schedule:
# temporary run job only once a month.
- cron: '* 5 1 * *'

env:
LD_PRELOAD: /lib/x86_64-linux-gnu/libSegFault.so
SEGFAULT_SIGNALS: all
branches:
- '*'
# MV(as well as FV) Android and iOS only once a month.
- cron: '* 5 1 * *'

jobs:
fv-build-ios-network-test:
name: FV / iOS clang / Network tests
runs-on: macos-10.15
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@v2
uses: actions/checkout@v3
- name: Build with tests
run: ./scripts/ios/fv/gh-actions-build-with-tests-fv.sh
shell: bash
- name: Test FV Network
- name: Test MV Network
run: ./scripts/ios/fv/gh-actions-functional-network-test.sh
shell: bash

fv-android-amulator-build-test:
mv-android-emulator-build-test:
name: MV.Android.Emulator.Build.Test.API21.ABIx86_64.NDK-Latest.
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
ANDROID_NDK_HOME: $(ANDROID_HOME)/ndk-bundle
SEGFAULT_SIGNALS: all
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Verification of cmake script
run: ls -la $(ANDROID_NDK_HOME)/build/cmake/android.toolchain.cmake
shell: bash
Expand Down

0 comments on commit 126e602

Please sign in to comment.