This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
CI: remove PGO profiles #208
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: Kernel Build CI | |
on: | |
push: | |
env: | |
BOT_MSG_URL: ${{ secrets.TG_BOT_MSG_URL }} | |
CHAT_ID: ${{ secrets.TG_CHAT_ID }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }} | |
GITHUB_EMAIL: ${{ secrets.EMAIL }} | |
GITHUB_USER: ${{ secrets.USERNAME }} | |
jobs: | |
bot-notify-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send message | |
run: curl -s -X POST ${{ env.BOT_MSG_URL }} -d chat_id=${{ env.CHAT_ID }} -d "disable_web_page_preview=true" -d "parse_mode=html" -d text="CI kernel build triggered for <b>OPlus sm8350 Devices</b>" | |
build-lemonade-gcc: | |
needs: [bot-notify-ci] | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- name: Setup Pre-requisites | |
run: sudo dnf install gcc clang lld repo bc flex openssl-devel wget tar zstd bsdtar file -y | |
- name: Repo sync | |
run: | | |
repo init -u https://github.com/mvaisakh/android_kernel_manifest -b eva-oneplus-5.4 --depth=1 | |
repo sync --no-tags --no-clone-bundle -j$(nproc --all) | |
- name: GCC Build | |
run: | | |
sed -i s/build-user/mvaisakh/g build/_setup_env.sh | |
sed -i s/build-host/statixos/g build/_setup_env.sh | |
BUILD_CONFIG=kernel/msm-5.4/build.config.lemonade VARIANT=qgki BUILTIN=1 COMPILER=gcc GCC_LTO=1 GRAPHITE=1 PGO=1 SKIP_MRPROPER=1 BUILD_KERNEL=1 build/build.sh | |
- name: Create zip | |
run: | | |
cp out/msm-5.4-lahaina-qgki/dist/Image ak3/ | |
cat out/msm-5.4-lahaina-qgki/dist/*.dtb > ak3/dtb | |
cp out/msm-5.4-lahaina-qgki/dist/dtbo.img ak3/ | |
cd ak3/ && zip -r9 eva-lemonade-$(/bin/date -u '+%d%m%Y%I%M')-gcc.zip * -x .git README.md ./*/placeholder | |
cd ../ | |
- uses: actions/upload-artifact@main | |
with: | |
name: release-zip | |
path: ak3/*.zip | |
- name: Push kernel | |
run: | | |
git config --global user.name "${GITHUB_USER}" | |
git config --global user.email "${GITHUB_EMAIL}" | |
git clone https://"${GITHUB_USER}":"${PUSH_TOKEN}"@github.com/mvaisakh/android_device_oneplus_lemonade-kernel lemonade-kernel -b tm-gcc | |
cp out/msm-5.4-lahaina-qgki/dist/* lemonade-kernel | |
cd lemonade-kernel | |
f="$(git rev-parse --git-dir)/hooks/commit-msg"; curl -o "$f" https://review.statixos.com/tools/hooks/commit-msg ; chmod +x "$f" | |
git add . | |
git commit -m "lemonade-kernel: update prebuilts $(/bin/date -u '+%d%m%Y%I%M')" -m "version: $(strings Image | grep 'Linux Version 5')" | |
git push | |
build-lemonade-gcc-profiling: | |
needs: [bot-notify-ci] | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- name: Setup Pre-requisites | |
run: sudo dnf install gcc clang lld repo bc flex openssl-devel wget tar zstd bsdtar file -y | |
- name: Repo sync | |
run: | | |
repo init -u https://github.com/mvaisakh/android_kernel_manifest -b eva-oneplus-5.4 --depth=1 | |
repo sync --no-tags --no-clone-bundle -j$(nproc --all) | |
- name: GCC Build | |
run: | | |
sed -i s/build-user/mvaisakh/g build/_setup_env.sh | |
sed -i s/build-host/statixos/g build/_setup_env.sh | |
BUILD_CONFIG=kernel/msm-5.4/build.config.lemonade VARIANT=qgki BUILTIN=1 COMPILER=gcc GCC_LTO=1 GRAPHITE=1 GCOV_PROFILE=1 SKIP_MRPROPER=1 BUILD_KERNEL=1 build/build.sh | |
- name: Create zip | |
run: | | |
cp out/msm-5.4-lahaina-qgki/dist/Image ak3/ | |
cat out/msm-5.4-lahaina-qgki/dist/*.dtb > ak3/dtb | |
cp out/msm-5.4-lahaina-qgki/dist/dtbo.img ak3/ | |
cd ak3/ && zip -r9 eva-lemonade-$(/bin/date -u '+%d%m%Y%I%M')-gcc-profiling.zip * -x .git README.md ./*/placeholder | |
cd ../ | |
- name: Create profiling tar | |
run: | | |
tar -cf eva-lemonade-gcov-gcno-$(/bin/date -u '+%d%m%Y%I%M').xz $(find /home/runner/work/oneplus9pro/oneplus9pro/out/msm-5.4-lahaina-qgki/kernel/msm-5.4/ | grep gcno) | |
- uses: actions/upload-artifact@main | |
with: | |
name: profile-zip | |
path: | | |
ak3/*.zip | |
*.xz | |
build-martini-gcc: | |
needs: [bot-notify-ci] | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- name: Setup Pre-requisites | |
run: sudo dnf install gcc clang lld repo bc flex openssl-devel wget tar zstd bsdtar file -y | |
- name: Repo sync | |
run: | | |
repo init -u https://github.com/mvaisakh/android_kernel_manifest -b eva-oneplus-5.4 --depth=1 | |
repo sync --no-tags --no-clone-bundle -j$(nproc --all) | |
- name: GCC Build | |
run: | | |
sed -i s/build-user/mvaisakh/g build/_setup_env.sh | |
sed -i s/build-host/statixos/g build/_setup_env.sh | |
BUILD_CONFIG=kernel/msm-5.4/build.config.martini VARIANT=qgki BUILTIN=1 COMPILER=gcc GCC_LTO=1 GRAPHITE=1 SKIP_MRPROPER=1 BUILD_KERNEL=1 build/build.sh | |
- name: Create zip | |
run: | | |
cp out/msm-5.4-lahaina-qgki/dist/Image ak3/ | |
cat out/msm-5.4-lahaina-qgki/dist/*.dtb > ak3/dtb | |
cp out/msm-5.4-lahaina-qgki/dist/dtbo.img ak3/ | |
cd ak3/ && zip -r9 eva-martini-$(/bin/date -u '+%d%m%Y%I%M')-gcc.zip * -x .git README.md ./*/placeholder | |
cd ../ | |
- uses: actions/upload-artifact@main | |
with: | |
name: release-zip | |
path: ak3/*.zip | |
- name: Push kernel | |
run: | | |
git config --global user.name "${GITHUB_USER}" | |
git config --global user.email "${GITHUB_EMAIL}" | |
git clone https://"${GITHUB_USER}":"${PUSH_TOKEN}"@github.com/mvaisakh/android_device_oneplus_martini-kernel martini-kernel -b tm-gcc | |
cp out/msm-5.4-lahaina-qgki/dist/* martini-kernel | |
cd martini-kernel | |
f="$(git rev-parse --git-dir)/hooks/commit-msg"; curl -o "$f" https://review.statixos.com/tools/hooks/commit-msg ; chmod +x "$f" | |
git add . | |
git commit -m "martini-kernel: update prebuilts $(/bin/date -u '+%d%m%Y%I%M')" -m "version: $(strings Image | grep 'Linux Version 5')" | |
git push | |
build-martini-gcc-profiling: | |
needs: [bot-notify-ci] | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- name: Setup Pre-requisites | |
run: sudo dnf install gcc clang lld repo bc flex openssl-devel wget tar zstd bsdtar file -y | |
- name: Repo sync | |
run: | | |
repo init -u https://github.com/mvaisakh/android_kernel_manifest -b eva-oneplus-5.4 --depth=1 | |
repo sync --no-tags --no-clone-bundle -j$(nproc --all) | |
- name: GCC Build | |
run: | | |
sed -i s/build-user/mvaisakh/g build/_setup_env.sh | |
sed -i s/build-host/statixos/g build/_setup_env.sh | |
BUILD_CONFIG=kernel/msm-5.4/build.config.martini VARIANT=qgki BUILTIN=1 COMPILER=gcc GCC_LTO=1 GRAPHITE=1 GCOV_PROFILE=1 SKIP_MRPROPER=1 BUILD_KERNEL=1 build/build.sh | |
- name: Create zip | |
run: | | |
cp out/msm-5.4-lahaina-qgki/dist/Image ak3/ | |
cat out/msm-5.4-lahaina-qgki/dist/*.dtb > ak3/dtb | |
cp out/msm-5.4-lahaina-qgki/dist/dtbo.img ak3/ | |
cd ak3/ && zip -r9 eva-martini-$(/bin/date -u '+%d%m%Y%I%M')-gcc-profiling.zip * -x .git README.md ./*/placeholder | |
cd ../ | |
- name: Create profiling tar | |
run: | | |
tar -cf eva-martini-gcov-gcno-$(/bin/date -u '+%d%m%Y%I%M').xz $(find /home/runner/work/oneplus9pro/oneplus9pro/out/msm-5.4-lahaina-qgki/kernel/msm-5.4/ | grep gcno) | |
- uses: actions/upload-artifact@main | |
with: | |
name: profile-zip | |
path: | | |
ak3/*.zip | |
*.xz | |
publish-release: | |
needs: [build-lemonade-gcc,build-martini-gcc] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restoring artifacts | |
uses: actions/download-artifact@main | |
with: | |
name: release-zip | |
path: ${{ github.workspace }} | |
- name: Release Tag | |
id: release_tag | |
run: echo "TAG_NAME=$(date -u +%d%m%Y%I%M)" >> $GITHUB_ENV | |
- name: Create Release | |
run: gh release create ${{ env.TAG_NAME }} --generate-notes -p *.zip | |
- name: Release Check | |
run: gh release list -L 1 > list | |
- name: Prepare release message | |
run: gh release view $(cat list | awk '{ print substr( $0, 1, length($0)-45 ) }') > release-text | |
- name: Send message | |
run: curl -s -X POST ${{ env.BOT_MSG_URL }} -d chat_id=${{ env.CHAT_ID }} -d "disable_web_page_preview=true" -d "parse_mode=html" -d text="<b>New build for OnePlus 9 Series</b> %0A$(cat release-text | sed '1d;3d;4d;6d;7d;9d;10d;11d;12d;13d;14d;15d;16d;17d;')" | |
publish-release-profiling: | |
needs: [build-lemonade-gcc-profiling,build-martini-gcc-profiling] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restoring artifacts | |
uses: actions/download-artifact@main | |
with: | |
name: profile-zip | |
path: ${{ github.workspace }} | |
- name: Profiling Tag | |
id: profile_tag | |
run: echo "TAG_NAME_PROFILING=$(date -u +%d%m%Y%I%M)" >> $GITHUB_ENV | |
- name: Create Release | |
run: gh release create "${{ env.TAG_NAME_PROFILING }}-profiling" --generate-notes -p */*.zip *.xz |