1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 20:25:47 +00:00

Add Android CI support

This commit is contained in:
Braden Farmer 2020-12-27 22:43:07 -07:00 committed by GitHub
parent 3b5bd7c63d
commit 3ccd6739ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,6 +67,71 @@ build-retroarch-dingux-mips32:
- "cp -f libretro-common/audio/dsp_filters/*.dsp ${MEDIA_PATH}/${CI_PROJECT_NAME}/filters/audio"
- "cp -f gfx/video_filters/*.filt ${MEDIA_PATH}/${CI_PROJECT_NAME}/filters/video"
build-retroarch-android-normal:
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-android:latest
stage: build
artifacts:
paths:
- ./
exclude:
- .git/**/*
expire_in: 1 month
script:
- "cd pkg/android/phoenix"
- "./gradlew assembleNormalRelease"
build-retroarch-android-aarch64:
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-android:latest
stage: build
artifacts:
paths:
- ./
exclude:
- .git/**/*
expire_in: 1 month
script:
- "cd pkg/android/phoenix"
- "./gradlew assembleAarch64Release"
build-retroarch-android-ra32:
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-android:latest
stage: build
artifacts:
paths:
- ./
exclude:
- .git/**/*
expire_in: 1 month
script:
- "cd pkg/android/phoenix"
- "./gradlew assembleRa32Release"
build-retroarch-android-playstore-normal:
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-android:latest
stage: build
artifacts:
paths:
- ./
exclude:
- .git/**/*
expire_in: 1 month
script:
- "cd pkg/android/phoenix"
- "./gradlew bundlePlayStoreNormalRelease"
build-retroarch-android-playstore-aarch64:
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-android:latest
stage: build
artifacts:
paths:
- ./
exclude:
- .git/**/*
expire_in: 1 month
script:
- "cd pkg/android/phoenix"
- "./gradlew bundlePlayStoreAarch64Release"
build-static-retroarch-libnx-aarch64:
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-libnx-devkitpro:latest
stage: prepare-for-static-cores