Skip to content

Commit

Permalink
cjjshdhsjja
Browse files Browse the repository at this point in the history
  • Loading branch information
fukiame committed Aug 6, 2023
1 parent 59b9ceb commit be86c95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on: # [push]
# - cron: 0 8 * * 5
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
COMPILER:
description: 'compilers used'
required: true
default: 'NeutronClang'
watch:
types: [started]

Expand All @@ -21,7 +26,7 @@ env:
REPO: TelegramAt25/android_kernel_xiaomi_selene
RUN_NUM: ${{ github.run_number }}_${{ github.run_attempt }}
KERNEL_BRANCH: thirteen
SCRIPTS: EvaGCC
COMPILERS: ${{ github.event.inputs.COMPILER }}
TZ: Asia/Ho_Chi_Minh

jobs:
Expand Down
4 changes: 2 additions & 2 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ apt-get install llvm lld bc bison ca-certificates curl flex gcc git libc6-dev \
bash tg_utils.sh msg "gh $RUN_NUM: cloning kernel source, repo: $REPO"
git clone --depth=1 https://github.com/$REPO -b $KERNEL_BRANCH kernel

bash tg_utils.sh msg "gh $RUN_NUM: running compilation script(s): $SCRIPTS"
bash tg_utils.sh msg "gh $RUN_NUM: running compilation script(s): $COMPILERS"

cd kernel
bash ../build.sh "$SCRIPTS"
bash ../build.sh "$COMPILERS"

ZIP=$(echo *.zip)
if [[ -e $ZIP ]]; then
Expand Down

0 comments on commit be86c95

Please sign in to comment.