mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-23 15:13:02 +00:00
36 lines
894 B
YAML
36 lines
894 B
YAML
|
# This is a basic workflow to help you get started with Actions
|
||
|
|
||
|
name: build
|
||
|
|
||
|
# Controls when the action will run.
|
||
|
on:
|
||
|
# Triggers the workflow on push or pull request events but only for the main branch
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
pull_request:
|
||
|
branches: [ main ]
|
||
|
|
||
|
# Allows you to run this workflow manually from the Actions tab
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
submodules: recursive
|
||
|
- name: install aarch64-linux-gnu- toolchain
|
||
|
run: |
|
||
|
sudo apt-get update
|
||
|
sudo apt-get install --no-install-recommends -y device-tree-compiler gcc-aarch64-linux-gnu
|
||
|
- name: build
|
||
|
run: make -k -j2 ARCH=aarch64-linux-gnu-
|
||
|
- uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: m1n1
|
||
|
path: |
|
||
|
build/m1n1.macho
|
||
|
build/dtb/t8103-j274.dtb
|