Skip to content

Dreamcast: Simplify gldc code a bit, to hopefully alleviate the minor… #6

Dreamcast: Simplify gldc code a bit, to hopefully alleviate the minor…

Dreamcast: Simplify gldc code a bit, to hopefully alleviate the minor… #6

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: |
source /opt/toolchains/dc/kos/environ.sh
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'