Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ytmytm/c64-lng
Browse files Browse the repository at this point in the history
  • Loading branch information
ytmytm committed Mar 5, 2023
2 parents ea3e548 + 466699a commit 8703e49
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: LUnix NG Kernel+APS
name: LUnix NG Kernel+APPS

on:
push:
Expand All @@ -13,19 +13,54 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: make devel

- name: make devel tools
run: make devel

- name: make kernel for C64
run: make binaries MACHINE=c64

- name: make apps for C64
run: make apps

- name: make package for C64
run: make cbmpackage MACHINE=c64

- name: cleanup after C64
run: make clean

- name: make kernel for C128
run: make binaries MACHINE=c128

- name: make apps for C128
run: make apps

- name: make package for C128
run: make cbmpackage MACHINE=c128

- name: cleanup after C128
run: make clean
- name: make kernel for atari

- name: make kernel for Atari
run: make binaries MACHINE=atari

- name: make disk image for Atari
run: make ataripackage MACHINE=atari

- name: Upload C64 files
uses: actions/[email protected]
with:
name: LUnix_C64_self-extracting_archive
path: pkg/*.c64

- name: Upload C128 files
uses: actions/[email protected]
with:
name: LUnix_C128_self-extracting_archive
path: pkg/*.c128

- name: Upload Atari
uses: actions/[email protected]
with:
name: LUnix_Atari_XEX
path: pkg/atari.xex

0 comments on commit 8703e49

Please sign in to comment.