chore: bump inference defaults from unsloth #10524
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 test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| # Supersede an in-flight run when a PR gets a new push. Keyed on the PR number | |
| # so every push to the same PR shares a group; on a master push the key falls | |
| # back to github.sha (unique per commit) and cancel-in-progress is false, so | |
| # master runs never cancel each other -- each commit is built on its own. | |
| concurrency: | |
| group: ci-build-test-${{ github.event.pull_request.number || github.sha }}-${{ github.repository }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25 | |
| - name: Run GoReleaser | |
| run: | | |
| make dev-dist | |
| launcher-build-darwin: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25 | |
| - name: Build launcher for macOS ARM64 | |
| run: | | |
| make build-launcher-darwin | |
| ls -liah dist | |
| - name: Upload macOS launcher artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: launcher-macos | |
| path: dist/ | |
| retention-days: 30 | |
| launcher-build-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure apt mirror on runner | |
| uses: ./.github/actions/configure-apt-mirror | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25 | |
| - name: Build launcher for Linux | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install golang gcc libgl1-mesa-dev xorg-dev libxkbcommon-dev | |
| make build-launcher-linux | |
| - name: Upload Linux launcher artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: launcher-linux | |
| path: local-ai-launcher-linux.tar.xz | |
| retention-days: 30 |