- Consolidate _demo, _pydemo, _embdemo into single _demo directory structure
- Organize demos by language: _demo/{go,py,c,embed}/
- Categorize demos based on imports:
- Python library demos (py imports) → _demo/py/
- C/C++ library demos (c/cpp imports) → _demo/c/
- Go-specific demos → _demo/go/
- Embedded demos → _demo/embed/
- Move C-related demos (asm*, cabi*, cgo*, linkname, targetsbuild) from go/ to c/
- Update all path references in README.md and GitHub workflows
- Improve demo organization and navigation as requested in #1256
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
978 B
YAML
48 lines
978 B
YAML
|
|
name: Targets
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
- "!dependabot/**"
|
|
pull_request:
|
|
branches: ["**"]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
llgo:
|
|
continue-on-error: true
|
|
timeout-minutes: 30
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- macos-latest
|
|
- ubuntu-24.04
|
|
llvm: [19]
|
|
runs-on: ${{matrix.os}}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Install dependencies
|
|
uses: ./.github/actions/setup-deps
|
|
with:
|
|
llvm-version: ${{matrix.llvm}}
|
|
|
|
- name: Set up Go for build
|
|
uses: ./.github/actions/setup-go
|
|
with:
|
|
go-version: "1.24.2"
|
|
|
|
- name: Install
|
|
run: |
|
|
go install ./...
|
|
echo "LLGO_ROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV
|
|
|
|
- name: Build targets
|
|
run: |
|
|
cd _demo/embed/targetsbuild
|
|
bash build.sh
|