-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c0de02
commit 4637b8c
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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} |