forked from hasan6034/android_device_xiaomi_selene-pbrp
-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (64 loc) · 2.54 KB
/
pbrp-organization-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: PBRP Organization CI
on:
workflow_dispatch:
inputs:
DEPLOY_TYPE:
description: 'Deploy Type (TEST/BETA/OFFICIAL)'
required: true
default: 'TEST'
ChangeLogs:
description: 'Build ChangeLogs'
required: true
default: 'Sync Latest Source'
env:
BUILD_RELEASE_TYPE: ${{ github.event.inputs.DEPLOY_TYPE }}
CHANGELOG: ${{ github.event.inputs.ChangeLogs }}
BOT_API: ${{ secrets.BOT_API }}
GCF_AUTH_KEY: ${{ secrets.GCF_AUTH_KEY }}
GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
GitHubMail: ${{ secrets.GitHubMail }}
GitHubName: ${{ secrets.GitHubName }}
SFPassword: ${{ secrets.SFPassword }}
SFUserName: ${{ secrets.SFUserName }}
TARGET: "pbrp"
#EXTRA_CMD: "Extra Commands Here"
jobs:
PBRP_CI:
if: "(! contains(toJSON(github.event.commits.*.message), '[skip-ci]'))"
runs-on: ubuntu-20.04
steps:
- name: Auto Adapt Manifest
# /* if your branch name is other than the one which you dispatched workflow from then set it manually in the place of ${GITHUB_REF##*/}" */
run: echo "MANIFEST=https://github.com/PitchBlackRecoveryProject/manifest_pb -b ${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Export Vars
run: |
if [[ ${BUILD_RELEASE_TYPE} == "TEST" ]]; then echo "TEST_BUILD=true" >> $GITHUB_ENV;fi
if [[ ${BUILD_RELEASE_TYPE} == "BETA" ]]; then echo "BETA_BUILD=true" >> $GITHUB_ENV;fi
if [[ ${BUILD_RELEASE_TYPE} == "OFFICIAL" ]]; then echo "PB_OFFICIAL=true" >> $GITHUB_ENV;fi
- name: Checkout Cleaning Up Runner Repo
uses: actions/checkout@v2
with:
repository: PitchBlackRecoveryProject/Cleaner
ref: main
token: ${{ secrets.GH_BOT_TOKEN }}
path: .github/actions/Cleaner
- name: Cleaning
uses: ./.github/actions/Cleaner
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 12
- name: Checkout Recovery Compiler Repo
uses: actions/checkout@v2
with:
repository: PitchBlackRecoveryProject/Compiler
ref: production
token: ${{ secrets.GH_BOT_TOKEN }}
path: .github/actions/Compiler
- name: Recovery Compilation
uses: ./.github/actions/Compiler
- name: Release Builds
run: |
sudo apt-get update && sudo apt-get install sshpass -y
cd $BuildPath
bash vendor/utils/pb_deploy.sh ${BUILD_RELEASE_TYPE} ${VENDOR} ${CODENAME}