Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: skip build legacy/steward build #13

Merged
merged 1 commit into from
Mar 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 1 addition & 25 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]

jobs:
build-modern:
name: GmenuNX for MiyooCFW 1.4+ (musl libc)
name: GmenuNX for MiyooCFW (musl libc)
runs-on: ubuntu-20.04
container:
image: nfriedly/miyoo-toolchain:latest
Expand All @@ -28,27 +28,3 @@ jobs:
name: GMenuNX Bundle
path: dist/miyoo/GMenuNX.zip
if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn`
build-legacy:
name: GMenuNX legacy build for Miyoo 1.3.3 and older (uClibc)
runs-on: ubuntu-20.04
container:
image: nfriedly/miyoo-toolchain:steward
steps:
- uses: actions/checkout@v2
- name: build
run: make -f Makefile.miyoo dist
- uses: actions/upload-artifact@v2
with:
name: GMenuNX legacy binary
path: objs/miyoo/gmenu2x
if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn`
- uses: actions/upload-artifact@v2
with:
name: GMenuNX legacy binary (debug)
path: objs/miyoo/gmenu2x-debug
if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn`
- uses: actions/upload-artifact@v2
with:
name: GMenuNX legacy Bundle
path: dist/miyoo/GMenuNX.zip
if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn`