Skip to content

Commit

Permalink
更新 Make.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
azwhikaru committed Jun 19, 2021
1 parent ebe4868 commit 32d197f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/Make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ jobs:
export ALLOW_MISSING_DEPENDENCIES=true
source build/envsetup.sh
lunch ${{ steps.var.outputs.device_code }}-eng
make clean & make recoveryimage -j$(nproc --all)
make clean
make recoveryimage -j$(nproc --all)
- name: Start Building (Omni Mode)
if: steps.var.outputs.use_omin_head == 'true'
Expand All @@ -132,7 +133,8 @@ jobs:
export ALLOW_MISSING_DEPENDENCIES=true
source build/envsetup.sh
lunch omni_${{ steps.var.outputs.device_code }}-eng
make clean & make recoveryimage -j$(nproc --all)
make clean
make recoveryimage -j$(nproc --all)
- name: Start Building (Customize Mode)
if: steps.var.outputs.use_omin_head == 'true'
Expand All @@ -143,7 +145,8 @@ jobs:
export ALLOW_MISSING_DEPENDENCIES=true
source build/envsetup.sh
lunch {{ steps.var.outputs.customize_name }}
make clean & make recoveryimage -j$(nproc --all)
make clean
make recoveryimage -j$(nproc --all)
- name: Start Building (Advanced Mode)
if: steps.var.outputs.use_advanced_mode == 'true'
Expand All @@ -154,7 +157,8 @@ jobs:
export ALLOW_MISSING_DEPENDENCIES=true
source build/envsetup.sh
lunch {{ steps.var.outputs.customize_name }}
make clean & make {{ steps.var.outputs.advanced_name }} -j$(nproc --all)
make clean
make {{ steps.var.outputs.advanced_name }} -j$(nproc --all)
- name: Upload File to Release
Expand Down

0 comments on commit 32d197f

Please sign in to comment.