From 9e2b6538336e662b9f5dc25a0ecc86c82ffabe82 Mon Sep 17 00:00:00 2001 From: Finn Voorhees Date: Mon, 27 Jul 2026 18:44:05 +0000 Subject: [PATCH] ci: verify the build on every platform via the shared workflow This repo had no CI - only tag-triggered releases - so a broken build was not caught until someone cut a tag. Calls desert-ant-core's shared model-sdk-build workflow (pinned v0.5.5), same pattern as the release workflow. --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..eb7e35f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build + +# Verify this SDK compiles on every platform it ships to. The pipeline lives in +# desert-ant-core's reusable model-sdk-build workflow, shared by every model SDK, +# so this file only names the version of it to use. +# +# Jobs: swift-apple, swift-linux, android (natives + AAR), wasm, and node-native +# on both host OSes. Build-only - nothing is published. + +on: + push: + branches: [main] + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + build: + uses: Desert-Ant-Labs/desert-ant-core/.github/workflows/model-sdk-build.yml@v0.5.5