Skip to content

test

test #6

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
if: github.repository == 'pcercuei/bloom'
runs-on: ubuntu-latest
container: pcercuei/dreamcast-toolchain:stable
steps:
- uses: actions/checkout@v4
with:
path: bloom
- uses: actions/checkout@v4
with:
repository: KallistiOS/KallistiOS
path: kos
- uses: actions/checkout@v4
with:
repository: KallistiOS/kos-ports
path: kos-ports
- name: install-dependencies
run: |
apk --update add --no-cache coreutils
- name: build KallistiOS
run: |
cp kos/doc/environ.sh.sample kos/environ.sh
sed -i 's/KOS_BASE=.*$/KOS_BASE=$GITHUB_WORKSPACE/kos/' kos/environ.sh
. kos/environ.sh
make -C kos
- name: build KallistiOS ports
continue-on-error: true
run: |
make -C kos-ports/libparallax install
make -C kos-ports/libsmb2 install
- name: build Bloom
run: |
mkdir bloom/build
cd bloom/build
kos-cmake -DCMAKE_BUILD_TYPE=Release ..
make