Update workflows.yml #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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkita64:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: make clean | |
run: | | |
make clean | |
- name: MAKEWAH | |
run : | | |
make nxExt -j66 && echo nxExt | |
make module -j66 && echo module | |
make overlay -j66 && echo overlay | |
make wah -j66 && echo wah | |
- name: nxExt | |
run: | | |
make nxExt | |
- name: module | |
run: | | |
make module | |
- name: overlay | |
run: | | |
make overlay | |
- name: systune | |
run: | | |
make all | |
- name: final | |
run: | | |
make dist | |
- uses: actions/upload-artifact@master | |
with: | |
name: sys-tune | |
path: dist |