update readme #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Executables | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "v*" | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-22.04 | |
| target: linux-x64 | |
| artifact: semble-linux-x64 | |
| - os: ubuntu-22.04-arm | |
| target: linux-arm64 | |
| artifact: semble-linux-arm64 | |
| - os: macos-13 | |
| target: macos-x64 | |
| artifact: semble-macos-x64 | |
| - os: macos-14 | |
| target: macos-arm64 | |
| artifact: semble-macos-arm64 | |
| - os: windows-latest | |
| target: windows-x64 | |
| artifact: semble-windows-x64.exe | |
| - os: windows-11-arm | |
| target: windows-arm64 | |
| artifact: semble-windows-arm64.exe | |
| runs-on: ${{ matrix.os }} | |
| name: Build (${{ matrix.target }}) | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: uv sync --extra mcp | |
| - name: Build executable | |
| run: uv run python build.py --name semble --with-mcp | |
| - name: Smoke test (Unix) | |
| if: runner.os != 'Windows' | |
| run: | | |
| chmod +x dist/semble | |
| ./dist/semble search --help | |
| ./dist/semble init --help | |
| - name: Smoke test (Windows) | |
| if: runner.os == 'Windows' | |
| run: | | |
| dist\semble.exe search --help | |
| dist\semble.exe init --help | |
| - name: Rename artifact (Unix) | |
| if: runner.os != 'Windows' | |
| run: mv dist/semble dist/${{ matrix.artifact }} | |
| - name: Rename artifact (Windows) | |
| if: runner.os == 'Windows' | |
| run: mv dist/semble.exe dist/${{ matrix.artifact }} | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.artifact }} | |
| path: dist/${{ matrix.artifact }} | |
| retention-days: 30 | |
| release: | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/') | |
| steps: | |
| - name: Download all artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: artifacts/ | |
| merge-multiple: true | |
| - name: Generate checksums | |
| run: | | |
| cd artifacts | |
| sha256sum * > checksums-sha256.txt | |
| cat checksums-sha256.txt | |
| - name: Create release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| artifacts/* | |
| generate_release_notes: true | |
| body: | | |
| ## Standalone Executables | |
| No Python installation required. Download the binary for your platform and run it directly. | |
| | Platform | Architecture | File | | |
| |----------|-------------|------| | |
| | Linux | x64 | `semble-linux-x64` | | |
| | Linux | ARM64 | `semble-linux-arm64` | | |
| | macOS | Intel (x64) | `semble-macos-x64` | | |
| | macOS | Apple Silicon (ARM64) | `semble-macos-arm64` | | |
| | Windows | x64 | `semble-windows-x64.exe` | | |
| | Windows | ARM64 | `semble-windows-arm64.exe` | | |
| ### Usage | |
| ```bash | |
| chmod +x semble-* | |
| ./semble-linux-x64 search "authentication flow" ./my-project | |
| ``` | |
| ### Verify checksums | |
| ```bash | |
| sha256sum -c checksums-sha256.txt | |
| ``` |