droidian rootfs-builder #22
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: droidian rootfs-builder | |
on: | |
workflow_dispatch: | |
push: | |
schedule: | |
- cron: "59 23 * * *" | |
jobs: | |
once: | |
runs-on: ubuntu-20.04 | |
name: Generate matrix | |
outputs: | |
matrix: ${{ steps.gen-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Generate matrix | |
id: gen-matrix | |
run: | | |
JOBS="$(./generate_device_recipe.py --matrix)" | |
echo ::set-output name=matrix::${JOBS} | |
build: | |
runs-on: ubuntu-20.04 | |
needs: once | |
strategy: | |
fail-fast: true | |
matrix: | |
config: ${{ fromJson(needs.once.outputs.matrix) }} | |
name: ${{ matrix.config.job_name }} | |
steps: | |
- name: Get current date | |
run: echo "current_date=$(date +'%Y%m%d')" >> $GITHUB_ENV | |
- name: Set suffix | |
run: echo "release_suffix=_${{ env.current_date }}" >> $GITHUB_ENV | |
- name: Set nightly version | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
run: echo "DROIDIAN_VERSION=nightly" >> $GITHUB_ENV | |
- name: Set version | |
if: startsWith(github.ref, 'refs/tags/droidian') == true | |
run: echo "DROIDIAN_VERSION=$(echo ${{ github.ref }} | rev | cut -d'/' -f1 | rev)" >> $GITHUB_ENV | |
- name: Set identifier | |
run: echo "DROIDIAN_IDENTIFIER=${{ matrix.config.product }}-${{ matrix.config.arch }}-${{ matrix.config.edition }}-${{ matrix.config.variant }}-${{ matrix.config.apilevel }}" >> $GITHUB_ENV | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
lfs: 'true' | |
submodules: 'recursive' | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: QEMU set-up | |
uses: docker/setup-qemu-action@v1 | |
- name: Create build dir | |
run: mkdir -p /tmp/buildd-results | |
- name: Pull container | |
run: docker pull quay.io/droidian/rootfs-builder:next-amd64 | |
- name: Start Container | |
run: echo CONTAINER_HASH=$(docker run --detach --privileged -v /tmp/buildd-results:/buildd/out -v /dev:/host-dev -v /sys/fs/cgroup:/sys/fs/cgroup -v ${PWD}:/buildd/sources --security-opt seccomp:unconfined quay.io/droidian/rootfs-builder:next-amd64 /sbin/init) >> $GITHUB_ENV | |
- name: Build rootfs | |
run: | | |
docker exec $CONTAINER_HASH /bin/sh -c 'cd /buildd/sources; DROIDIAN_VERSION="${{ env.DROIDIAN_VERSION }}" ./generate_device_recipe.py ${{ matrix.config.product }} ${{ matrix.config.arch }} ${{ matrix.config.edition }} ${{ matrix.config.variant }} ${{ matrix.config.apilevel }} && debos --disable-fakemachine generated/droidian.yaml' | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: droidian-out-${{ matrix.config.product }}-${{ matrix.config.arch }}-${{ matrix.config.edition }}-${{ matrix.config.variant }}-${{ matrix.config.apilevel }} | |
path: out/* | |
if-no-files-found: error | |
retention-days: 1 | |
prepare: | |
runs-on: ubuntu-20.04 | |
name: Create GitHub release | |
needs: build | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }}${{ steps.create_nightly.outputs.upload_url }} | |
steps: | |
- name: Free up some storage | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: true | |
swap-storage: true | |
- name: Delete old nightly release | |
uses: dev-drprasad/[email protected] | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
with: | |
delete_release: true # default: false | |
tag_name: nightly # tag name to delete | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Delete old droidian-installer release | |
uses: dev-drprasad/[email protected] | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
with: | |
delete_release: true # default: false | |
tag_name: droidian-installer # tag name to delete | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Tag snapshot | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
uses: tvdias/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
tag: nightly | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: droidian-out | |
- name: Create SHA256SUMS | |
run: | | |
cd droidian-out | |
for x in droidian-out-*; do | |
cd $x | |
sha256sum * >> ../SHA256SUMS | |
cd .. | |
done | |
- name: Create stable release (drafted) | |
id: create_release | |
if: startsWith(github.ref, 'refs/tags/droidian') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: droidian-out/SHA256SUMS | |
tag_name: ${{ github.ref }} | |
draft: true | |
prerelease: false | |
- name: Create nightly release | |
id: create_nightly | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: droidian-out/SHA256SUMS | |
tag_name: nightly | |
draft: false | |
prerelease: false | |
publish: | |
runs-on: ubuntu-20.04 | |
needs: [once, prepare] | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }}${{ steps.create_nightly.outputs.upload_url }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: ${{ fromJson(needs.once.outputs.matrix) }} | |
name: Publish ${{ matrix.config.job_name }} | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: droidian-out-${{ matrix.config.product }}-${{ matrix.config.arch }}-${{ matrix.config.edition }}-${{ matrix.config.variant }}-${{ matrix.config.apilevel }} | |
path: droidian-out | |
- name: Create stable release (drafted) | |
id: create_release | |
if: startsWith(github.ref, 'refs/tags/droidian') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: droidian-out/* | |
tag_name: ${{ github.ref }} | |
draft: true | |
prerelease: false | |
- name: Create nightly release | |
id: create_nightly | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: droidian-out/* | |
tag_name: nightly | |
draft: false | |
prerelease: false | |
publish_installer: | |
runs-on: ubuntu-20.04 | |
needs: [once, prepare, publish] | |
strategy: | |
fail-fast: false | |
matrix: | |
config: ${{ fromJson(needs.once.outputs.matrix) }} | |
name: Publish ${{ matrix.config.job_name }} for Droidian installer | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: droidian-out-${{ matrix.config.product }}-${{ matrix.config.arch }}-${{ matrix.config.edition }}-${{ matrix.config.variant }}-${{ matrix.config.apilevel }} | |
path: droidian-droidian-installer | |
- name: Check if droidian-installer tag already exists | |
id: droidian_installer_exists | |
uses: mukunku/[email protected] | |
with: | |
tag: droidian-installer | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Tag droidian installer snapshot if doesn't exist | |
if: ${{ (startsWith(github.ref, 'refs/tags/droidian') != true) && (steps.droidian_installer_exists.outputs.exists == 'false') }} | |
uses: tvdias/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
tag: droidian-installer | |
- name: Prepare droidian installer img files | |
run: | | |
mv droidian-droidian-installer/droidian-UNOFFICIAL*.zip droidian-droidian-installer/droidian-UNOFFICIAL_${{ matrix.config.product }}-${{ matrix.config.arch }}-${{ matrix.config.edition }}-${{ matrix.config.variant }}-${{ matrix.config.apilevel }}.zip | |
- name: Create droidian installer release | |
id: create_nightly | |
if: startsWith(github.ref, 'refs/tags/droidian') != true | |
uses: svenstaro/[email protected] | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
tag: droidian-installer | |
file: droidian-droidian-installer/*.zip | |
file_glob: true | |
overwrite: true | |
prerelease: true |