-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.03 KB
/
86p.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
name: Compile .86p On Commit
on:
push:
branches: [ master ]
paths: 'TI-86/**'
pull_request:
branches: [ master ]
paths: 'TI-86/**'
workflow_dispatch:
jobs:
tasm:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Run TASM
shell: cmd
run: |
cd TI-86\scripts
tasm.bat
- name: Upload intermediary binary
uses: actions/upload-artifact@v2
with:
name: TASM
path: |
TI-86/build/pongiii.bin
TI-86/build/pongiii.lst
build:
runs-on: ubuntu-latest
needs: [tasm]
steps:
- uses: actions/checkout@v2
- name: Download TASM intermediary binary
uses: actions/download-artifact@v2
with:
name: TASM
- name: Run binpac8x and trim assembly listing
run: TI-86/scripts/pack.sh && sed -n -e '/org _asm_exec_ram/,// p' pongiii.lst > TI-86/out/pongiii.lst
- name: Upload output
uses: actions/upload-artifact@v2
with:
name: Output
path: TI-86/out