2023-05-16 00:39:11 +00:00
|
|
|
# This file is part of BOINC.
|
|
|
|
# http://boinc.berkeley.edu
|
|
|
|
# Copyright (C) 2023 University of California
|
|
|
|
#
|
|
|
|
# BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License
|
|
|
|
# as published by the Free Software Foundation,
|
|
|
|
# either version 3 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# BOINC is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-12-23 11:31:16 +00:00
|
|
|
name: Android
|
|
|
|
on:
|
|
|
|
push:
|
2022-12-12 23:50:58 +00:00
|
|
|
branches: [ master, 'client_release/**' ]
|
2023-05-22 08:53:00 +00:00
|
|
|
tags: [ 'client_release/**' ]
|
2020-12-23 11:31:16 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
schedule:
|
2023-11-06 20:48:24 +00:00
|
|
|
- cron: '0 0 * * *'
|
2020-12-23 11:31:16 +00:00
|
|
|
|
2022-10-13 23:30:13 +00:00
|
|
|
concurrency:
|
2022-06-25 11:25:13 +00:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-03-28 22:18:29 +00:00
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
|
|
|
|
AWS_DEFAULT_REGION: us-west-2
|
|
|
|
|
2020-12-23 11:31:16 +00:00
|
|
|
jobs:
|
2023-08-11 20:07:42 +00:00
|
|
|
build-client:
|
|
|
|
name: client-${{ matrix.type }}-build
|
2023-02-07 12:57:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-23 11:31:16 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-08-11 20:07:42 +00:00
|
|
|
type: [armv6, arm, arm64, x86, x86_64]
|
2020-12-23 11:31:16 +00:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
2024-06-23 20:18:04 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
2021-02-17 20:28:21 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2020-12-23 11:31:16 +00:00
|
|
|
|
2023-02-07 12:57:31 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo add-apt-repository universe
|
|
|
|
sudo apt-get -qq update
|
|
|
|
sudo apt-get install -y libncurses5
|
|
|
|
|
2023-08-11 20:07:42 +00:00
|
|
|
- name: Check if build is running from origin repo
|
|
|
|
if: ${{ success() && env.AWS_ACCESS_KEY_ID != 0 && env.AWS_SECRET_ACCESS_KEY != 0 }}
|
|
|
|
run: |
|
|
|
|
echo "VCPKG_BINARY_SOURCES=clear;x-aws,s3://vcpkg.cache.boinc/,readwrite" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Check if build is running from fork
|
|
|
|
if: ${{ success() && (env.AWS_ACCESS_KEY_ID == 0 || env.AWS_SECRET_ACCESS_KEY == 0) }}
|
|
|
|
run: |
|
|
|
|
echo "VCPKG_BINARY_SOURCES=clear;x-aws-config,no-sign-request;x-aws,s3://vcpkg.cache.boinc/,read" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Unset ANDROID_NDK_ROOT environment variable
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
|
|
|
echo ANDROID_NDK_ROOT="" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Build client with vcpkg
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: ./android/ci_build_vcpkg_client.sh --arch ${{ matrix.type }}
|
|
|
|
|
|
|
|
- name: Prepare logs on failure
|
|
|
|
if: ${{ failure() }}
|
|
|
|
run: python ./deploy/prepare_deployment.py logs
|
|
|
|
|
|
|
|
- name: Upload logs on failure
|
|
|
|
if: ${{ failure() }}
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/logs.7z
|
|
|
|
|
|
|
|
- name: Upload client on success
|
|
|
|
if: ${{ success() }}
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_client_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: android/BOINC/app/src/main/assets/
|
|
|
|
|
|
|
|
build-manager:
|
|
|
|
name: manager-build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build-client
|
|
|
|
strategy:
|
2023-08-20 00:51:07 +00:00
|
|
|
matrix:
|
|
|
|
task: [assembleRelease, assembleXiaomi_release, assembleArmv6_release, jacocoTestReportDebug]
|
2023-08-11 20:07:42 +00:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
2024-06-23 20:18:04 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Download armv6 client
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_client_armv6_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: android/BOINC/app/src/main/assets/
|
|
|
|
|
|
|
|
- name: Download arm client
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_client_arm_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: android/BOINC/app/src/main/assets/
|
|
|
|
|
|
|
|
- name: Download arm64 client
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_client_arm64_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: android/BOINC/app/src/main/assets/
|
|
|
|
|
|
|
|
- name: Download x86 client
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_client_x86_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: android/BOINC/app/src/main/assets/
|
|
|
|
|
|
|
|
- name: Download x86_64 client
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_client_x86_64_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: android/BOINC/app/src/main/assets/
|
|
|
|
|
2021-06-01 21:19:46 +00:00
|
|
|
- name: Setup Java
|
2024-02-05 13:07:33 +00:00
|
|
|
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
|
2020-12-23 11:31:16 +00:00
|
|
|
with:
|
2022-10-13 23:30:13 +00:00
|
|
|
distribution: 'zulu'
|
2022-03-19 22:23:06 +00:00
|
|
|
java-version: "17"
|
2020-12-23 11:31:16 +00:00
|
|
|
|
|
|
|
- name: Setup Android SDK
|
2024-02-05 13:07:33 +00:00
|
|
|
uses: android-actions/setup-android@00854ea68c109d98c75d956347303bf7c45b0277
|
2020-12-23 11:31:16 +00:00
|
|
|
|
2023-08-11 20:07:42 +00:00
|
|
|
- name: Build manager with vcpkg
|
2023-08-20 00:51:07 +00:00
|
|
|
run: ./android/ci_build_vcpkg_manager.sh --skip-client-build --tasks "clean ${{ matrix.task }}"
|
2023-08-11 20:07:42 +00:00
|
|
|
|
|
|
|
- name: Prepare logs on failure
|
|
|
|
if: ${{ failure() }}
|
|
|
|
run: python ./deploy/prepare_deployment.py logs
|
|
|
|
|
|
|
|
- name: Upload logs on failure
|
|
|
|
if: ${{ failure() }}
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_logs_manager_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/logs.7z
|
|
|
|
|
|
|
|
- name: Prepare artifacts for deploy
|
|
|
|
run: python ./deploy/prepare_deployment.py android_manager
|
|
|
|
|
|
|
|
- name: Upload generic artifacts
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-20 00:51:07 +00:00
|
|
|
if: ${{ matrix.task == 'assembleRelease' }}
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_manager_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/android_manager.7z
|
|
|
|
|
|
|
|
- name: Upload xiaomi manager
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-20 00:51:07 +00:00
|
|
|
if: ${{ matrix.task == 'assembleXiaomi_release' }}
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_xiaomi_manager_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/android_manager_xiaomi.7z
|
|
|
|
|
|
|
|
- name: Upload armv6 only manager
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-20 00:51:07 +00:00
|
|
|
if: ${{ matrix.task == 'assembleArmv6_release' }}
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: android_armv6_manager_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/android_manager_armv6.7z
|
|
|
|
|
|
|
|
- name: Upload JUnit Tests Results
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2023-08-20 00:51:07 +00:00
|
|
|
if: ${{ always() && matrix.task == 'jacocoTestReportDebug' }}
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
name: Android_tests_results
|
|
|
|
path: android/BOINC/app/build/test-results/testDebugUnitTest/TEST-*.xml
|
|
|
|
|
|
|
|
- name: Upload coverage report
|
2024-06-23 20:18:04 +00:00
|
|
|
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673
|
2024-04-12 00:01:53 +00:00
|
|
|
env:
|
|
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
2023-08-20 00:51:07 +00:00
|
|
|
if: ${{ matrix.task == 'jacocoTestReportDebug' }}
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
fail_ci_if_error: true
|
|
|
|
verbose: false
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: ${{ matrix.type }}-build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
type: [libs, apps, libs-cmake]
|
|
|
|
fail-fast: false
|
|
|
|
steps:
|
2024-06-23 20:18:04 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
2023-08-11 20:07:42 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo add-apt-repository universe
|
|
|
|
sudo apt-get -qq update
|
|
|
|
sudo apt-get install -y libncurses5
|
|
|
|
|
2022-03-28 22:18:29 +00:00
|
|
|
- name: Check if build is running from origin repo
|
|
|
|
if: ${{ success() && env.AWS_ACCESS_KEY_ID != 0 && env.AWS_SECRET_ACCESS_KEY != 0 }}
|
2021-05-31 02:57:40 +00:00
|
|
|
run: |
|
2022-03-28 22:18:29 +00:00
|
|
|
echo "VCPKG_BINARY_SOURCES=clear;x-aws,s3://vcpkg.cache.boinc/,readwrite" >> $GITHUB_ENV
|
2021-05-31 02:57:40 +00:00
|
|
|
|
2022-03-28 22:18:29 +00:00
|
|
|
- name: Check if build is running from fork
|
|
|
|
if: ${{ success() && (env.AWS_ACCESS_KEY_ID == 0 || env.AWS_SECRET_ACCESS_KEY == 0) }}
|
2021-05-31 02:57:40 +00:00
|
|
|
run: |
|
2022-03-28 22:18:29 +00:00
|
|
|
echo "VCPKG_BINARY_SOURCES=clear;x-aws-config,no-sign-request;x-aws,s3://vcpkg.cache.boinc/,read" >> $GITHUB_ENV
|
2021-05-31 02:57:40 +00:00
|
|
|
|
2022-06-25 08:37:19 +00:00
|
|
|
- name: Unset ANDROID_NDK_ROOT environment variable
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: |
|
|
|
|
echo ANDROID_NDK_ROOT="" >> $GITHUB_ENV
|
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Build libs with vcpkg
|
2023-03-18 15:19:12 +00:00
|
|
|
if: ${{ success() && matrix.type == 'libs' }}
|
2021-04-09 22:40:48 +00:00
|
|
|
run: ./android/ci_build_vcpkg_libraries.sh
|
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Build apps with vcpkg
|
2023-03-18 15:19:12 +00:00
|
|
|
if: ${{ success() && matrix.type == 'apps' }}
|
2021-04-09 22:40:48 +00:00
|
|
|
run: ./android/ci_build_vcpkg_apps.sh
|
|
|
|
|
2022-04-16 22:11:01 +00:00
|
|
|
- name: Build libs with cmake
|
|
|
|
if: ${{ success() && matrix.type == 'libs-cmake' }}
|
|
|
|
run: ./android/ci_build_libs_cmake.sh
|
|
|
|
|
2021-04-26 15:58:02 +00:00
|
|
|
- name: Prepare logs on failure
|
|
|
|
if: ${{ failure() }}
|
2022-06-25 14:51:16 +00:00
|
|
|
run: python ./deploy/prepare_deployment.py logs
|
2021-08-11 00:23:43 +00:00
|
|
|
|
2021-04-26 15:58:02 +00:00
|
|
|
- name: Upload logs on failure
|
|
|
|
if: ${{ failure() }}
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2021-04-26 15:58:02 +00:00
|
|
|
with:
|
|
|
|
name: android_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
|
|
|
path: deploy/logs.7z
|
|
|
|
|
2021-04-27 13:31:14 +00:00
|
|
|
- name: Prepare artifacts for deploy
|
2021-03-07 19:55:40 +00:00
|
|
|
if: ${{ success() && ! contains(matrix.type, 'libs') }}
|
2021-08-11 00:23:43 +00:00
|
|
|
run: python ./deploy/prepare_deployment.py android_${{ matrix.type }}
|
2021-01-04 13:02:50 +00:00
|
|
|
|
2021-08-11 00:23:43 +00:00
|
|
|
- name: Upload generic artifacts
|
2024-07-07 07:18:22 +00:00
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
|
2021-03-07 19:55:40 +00:00
|
|
|
if: ${{ ! contains(matrix.type, 'libs') }}
|
2021-01-04 13:02:50 +00:00
|
|
|
with:
|
|
|
|
name: android_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
2021-08-11 00:23:43 +00:00
|
|
|
path: deploy/android_${{ matrix.type }}.7z
|