Aarch64 powerdown: add support for GPIO power key #47
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 | |
on: | |
push: | |
branches: | |
- 'feature/**' | |
- 'fix/**' | |
pull_request: | |
jobs: | |
mac-build: | |
name: Mac Build | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install tools | |
run: brew install nasm x86_64-elf-binutils aarch64-elf-binutils | |
- name: x86 build | |
run: make -j`sysctl -n hw.ncpu` kernel PLATFORM=pc | |
- name: ARM build | |
run: make -j`sysctl -n hw.ncpu` kernel PLATFORM=virt |