mirror of
https://github.com/microsoft/GSL.git
synced 2025-01-18 17:55:01 -05:00
74d2bb79d4
* fix failing pipeline tests * upgrade to googletest v1.14.0 so it works with newer cmake versions * fix android pipeline to permit new cmake versions (short-term fix)
60 lines
2.0 KiB
YAML
60 lines
2.0 KiB
YAML
name: CI_Android
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
Android:
|
|
runs-on: macos-latest-large
|
|
defaults:
|
|
run:
|
|
working-directory: build
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Create build directory
|
|
run: mkdir -p build
|
|
working-directory: .
|
|
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
java-version: 8
|
|
distribution: zulu
|
|
|
|
- name: Start Emulator
|
|
run: |
|
|
echo "y" | $ANDROID_HOME/tools/bin/sdkmanager --install 'system-images;android-24;default;x86_64'
|
|
echo "no" | $ANDROID_HOME/tools/bin/avdmanager create avd -n xamarin_android_emulator -k 'system-images;android-24;default;x86_64' --force
|
|
$ANDROID_HOME/emulator/emulator -list-avds
|
|
echo "Starting emulator..."
|
|
nohup $ANDROID_HOME/emulator/emulator -no-audio -no-snapshot -avd xamarin_android_emulator &> /dev/null &
|
|
echo "Emulator starting in background"
|
|
|
|
- name: Configure
|
|
run: cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_LATEST_HOME/build/cmake/android.toolchain.cmake -DANDROID_PLATFORM=16 -DANDROID_ABI=x86_64 -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
- name: Build
|
|
run: cmake --build . --parallel
|
|
|
|
- name: Wait for emulator ready
|
|
timeout-minutes: 2
|
|
run: |
|
|
$ANDROID_HOME/platform-tools/adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed | tr -d '\r') ]]; do sleep 10; done; input keyevent 82'
|
|
$ANDROID_HOME/platform-tools/adb devices
|
|
$ANDROID_HOME/platform-tools/adb shell getprop ro.product.cpu.abi
|
|
|
|
- name: Deploy tests
|
|
run: |
|
|
adb push tests /data/local/tmp
|
|
adb shell find /data/local/tmp/tests -maxdepth 1 -exec chmod +x {} \\\;
|
|
|
|
- name: Test
|
|
run: adb shell find /data/local/tmp/tests -name "*_tests" -maxdepth 1 -exec {} \\\;
|