mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-23 09:34:35 -05:00
36 lines
No EOL
1.2 KiB
YAML
36 lines
No EOL
1.2 KiB
YAML
name: Build latest (Haiku)
|
|
on: [push]
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}-haiku
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-haiku:
|
|
if: github.ref_name == github.event.repository.default_branch
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: haiku/cross-compiler:x86_64-r1beta4
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Compile haiku build
|
|
id: compile
|
|
env:
|
|
COMMON_FLAGS: "-O1 -s -fno-stack-protector -fno-math-errno -Qn"
|
|
run: |
|
|
cd src
|
|
x86_64-unknown-haiku-gcc *.c interop_BeOS.cpp -o ClassiCube-haiku ${{ env.COMMON_FLAGS }} -lm -lGL -lnetwork -lstdc++ -lbe -lgame -ltracker
|
|
|
|
|
|
- uses: ./.github/actions/notify_failure
|
|
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
|
with:
|
|
NOTIFY_MESSAGE: 'Failed to compile Haiku build'
|
|
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
|
|
|
|
|
- uses: ./.github/actions/upload_build
|
|
if: ${{ always() && steps.compile.outcome == 'success' }}
|
|
with:
|
|
SOURCE_FILE: 'src/ClassiCube-haiku'
|
|
DEST_NAME: 'ClassiCube-haiku' |