27 lines
470 B
YAML
27 lines
470 B
YAML
name: runtime-self-hosted
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
runtime-ci:
|
|
runs-on:
|
|
- self-hosted
|
|
- linux
|
|
- metin-runtime
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Configure
|
|
run: cmake -S . -B build -G Ninja
|
|
|
|
- name: Build
|
|
run: cmake --build build -j2
|
|
|
|
- name: Self-hosted runtime CI
|
|
run: python3 scripts/self_hosted_runtime_ci.py --json
|