build-udroid #48
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: build-udroid | |
on: | |
push: | |
paths: | |
- "**.sh" | |
- "**.yml" | |
workflow_dispatch: { } | |
jobs: | |
BuidJammyRaw: | |
name: build Jammy | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Docker Setup QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Satify Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y | |
- name: Trigger fs-cook | |
run: sudo bash .github/scripts/build-jammy.sh | |
- name: save arm64 builds | |
uses: actions/upload-artifact@v2 | |
with: | |
name: jammy-raw-arm64 | |
path: jammy-arm64 | |
- name: save armhf builds | |
uses: actions/upload-artifact@v2 | |
with: | |
name: jammy-raw-armhf | |
path: jammy-armhf | |
- name: save amd64 builds | |
uses: actions/upload-artifact@v2 | |
with: | |
name: jammy-raw-amd64 | |
path: jammy-amd64 |