Skip to content

Commit

Permalink
Dreamcast test, probably broken
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Sep 21, 2023
1 parent a38369b commit b78b886
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/build_dreamcast.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build latest (Dreamcast)
on: [push]

concurrency:
group: ${{ github.ref }}-dreamcast
cancel-in-progress: true

jobs:
build:
if: github.ref_name == github.event.repository.default_branch
runs-on: ubuntu-latest
container:
image: kazade/dreamcast-sdk
steps:
- uses: actions/checkout@v3
- name: Compile Dreamcast build
id: compile
run: |
make dreamcast
- uses: ./.github/actions/notify_failure
if: ${{ always() && steps.compile.outcome == 'failure' }}
with:
NOTIFY_MESSAGE: 'Failed to compile Dreamcast build'
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'

- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'ClassiCube-dc.elf'
DEST_NAME: 'ClassiCube-dc.elf'

- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'ClassiCube-dc.iso'
DEST_NAME: 'ClassiCube-dc.iso'
2 changes: 1 addition & 1 deletion .github/workflows/build_xbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
eval $(/usr/src/nxdk/bin/activate -s)
make xbox
# otherwise notify_failure doesn't work
- name: Install curl when necessary
Expand Down

0 comments on commit b78b886

Please sign in to comment.