Skip to content

Slang proof of concept #519

Slang proof of concept

Slang proof of concept #519

Workflow file for this run

name: Linux
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
toolsets: [
{preset: x64-linux-ninja-llvm},
]
name: ${{matrix.toolsets.preset}} on Linux
runs-on: [Linux, X64, self-hosted]
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF -DCMAKE_C_COMPILER=clang-17 -DCMAKE_CXX_COMPILER=clang++-17
- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
- name: Build RelWithDebInfo
run: cmake --build --preset relwithdebinfo-${{matrix.toolsets.preset}}
- name: Build Release
run: cmake --build --preset release-${{matrix.toolsets.preset}}
notify:
needs: build
name: Notify
if: github.ref == 'refs/heads/main' # Only notify on commits to the main branch
runs-on: [Linux, X64, self-hosted]
steps:
- name: Notify TheHighSeas
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.PAT }}
repository: HoneybunchBuilder/thehighseas
event-type: linux-engine
- name: Notify Upland
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.PAT }}
repository: HoneybunchBuilder/upland
event-type: linux-engine