Skip to content

Update main.yml

Update main.yml #15

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Compile Kernel
# Controls when the workflow will run
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install packages
run: |
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install repo zip
# Runs a set of commands using the runners shell
- name: Sync kernel repo
run: |
mkdir android-kernel
cd android-kernel
repo init -u https://android.googlesource.com/kernel/manifest -b android14-gs-pixel-6.1
repo sync -c --no-tags
- name: Download Factory Images (Update vendor ramdisk)
run: |
curl -O "https://dl.google.com/dl/android/aosp/raven-ap1a.240505.004-factory-9d783215.zip"
- name: Update vendor ramdisk
run: |
ls
unzip raven-ap1a.240505.004-factory-9d783215.zip
cd raven-ap1a.240505.004
unzip image-raven-ap2a.240505.004.zip vendor_boot.img
mv vendor_boot.img ..
tools/mkbootimg/unpack_bootimg.py --boot_img vendor_boot.img \ --out vendor_boot_out
cp vendor_boot_out/vendor-ramdisk-by-name/ramdisk_ \ prebuilts/boot-artifacts/ramdisks/vendor_ramdisk-oriole.img
- name: Compile Kernel
run: |
tools/bazel run --config=fast --config=stamp //private/google-modules/soc/gs:slider_dist
cd out
ls
- name: Pack images to upload
run: |
mkdir to-upload
cp slider/dist/boot.img to-upload
cp slider/dist/dtbo.img to-upload
cp slider/dist/vendor_boot.img to-upload
cp slider/dist/vendor_dlkm.img to-upload
zip the-images to-upload -r