This repository has been archived by the owner on May 9, 2024. It is now read-only.
switch to -eng #41
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
name: Compile AOSP 5.1 | |
on: | |
push: | |
branches: [ "lollipop" ] | |
workflow_dispatch: | |
inputs: | |
enable_ssh: | |
description: 'enable ssh or not' | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: gamecss/lollipop_buildenv:latest | |
env: | |
LC_ALL: "C" | |
steps: | |
- name: Clear disk | |
run: | | |
sudo rm -rf /__t/* || true | |
sudo rm -rf $GITHUB_WORKSPACE/* || true | |
echo "========== / ==========" | |
sudo du -hxd3 / | |
echo "========== __* ==========" | |
sudo du -hxd2 /__* | |
df -h | |
- name: Get source | |
run: | | |
cd $GITHUB_WORKSPACE/ | |
mkdir aosp | |
cd aosp | |
git config --global user.email "[email protected]" | |
git config --global user.name "xunmod@bot" | |
sudo rm -f /usr/bin/python | |
sudo ln -sf /usr/local/bin/python3.8 /usr/bin/python | |
repo init --depth=1 -u https://github.com/xunmod/android_manifest -b lollipop | |
mkdir .repo/local_manifests | |
wget https://github.com/xunmod/android_device_ONDA_octopus-ibt/raw/lollipop/.github/extras.xml -O .repo/local_manifests/extras.xml | |
repo sync -c -f --no-tags --no-clone-bundle -j16 | |
rm -rf .repo/project-objects/platform .repo/project-objects/*-* | |
rm -r device/softwinner/octopus-ibt | |
rm -r bootable/recovery-twrp/applypatch | |
mv bootable/recovery/applypatch bootable/recovery-twrp/ | |
rm -r bootable/recovery | |
mv bootable/recovery-twrp bootable/recovery | |
curl https://github.com/xunmod/android_device_ONDA_octopus-ibt/raw/lollipop/.github/twrp.patch | patch -p1 - | |
- name: Build | |
shell: bash | |
run: | | |
sudo rm -f /usr/bin/python | |
sudo ln -sf /usr/bin/python2.7 /usr/bin/python | |
cd $GITHUB_WORKSPACE/aosp | |
source build/envsetup.sh | |
lunch octopus_ibt-eng | |
make -j$(nproc --all) | |
- name: Package image | |
run: | | |
tar -czvf images.tar.gz $(find $GITHUB_WORKSPACE/aosp/out/target/product/octopus-ibt -name *.img | xargs) | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Images | |
path: 'images.tar.gz' | |
# - name: Setup tmate session | |
# if: ${{ failure() || inputs.enable_ssh }} | |
# run: | | |
# wget https://github.com/tmate-io/tmate/releases/download/2.4.0/tmate-2.4.0-static-linux-amd64.tar.xz | |
# tar -xf tmate-2.4.0-static-linux-amd64.tar.xz | |
# sudo chmod +x tmate-2.4.0-static-linux-amd64/tmate | |
# tmate-2.4.0-static-linux-amd64/tmate -F |