forked from bscarell/losers
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (40 loc) · 899 Bytes
/
workflows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 && echo nxExt) &
(make module && echo module) &
(make overlay && echo overlay) &
while (make wah); do echo wah && clear && echo cleared; done;
- 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