fix(zai): support GLM-5.2+ reasoning_effort and GLM-5.3 always-on thinking #2066
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: | |
| - unstable | |
| - development | |
| - 'release/**' | |
| pull_request: | |
| branches: | |
| - unstable | |
| - development | |
| - 'release/**' | |
| env: | |
| GO111MODULE: on | |
| jobs: | |
| build-backend: | |
| name: Build Backend | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version: stable | |
| cache: true | |
| - name: Build main binary | |
| run: go build -ldflags "-s -w" -tags=nomsgpack -o axonhub ./cmd/axonhub | |
| - name: Verify production dependency graph | |
| run: | | |
| ./scripts/verify-go-sse-dependency-test.sh | |
| ./scripts/verify-go-sse-dependency.sh ./axonhub | |
| - name: Build schema generator | |
| run: cd cmd/schema && go build -o schema | |
| - name: Build llm module packages | |
| run: cd llm && go build ./... | |
| - name: Verify all packages compile | |
| run: go build ./... | |
| build-frontend: | |
| name: Build Frontend | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 10 | |
| run_install: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| cache-dependency-path: frontend/pnpm-lock.yaml | |
| - name: Install frontend dependencies | |
| working-directory: frontend | |
| run: pnpm install --frozen-lockfile | |
| - name: Build frontend | |
| working-directory: frontend | |
| run: pnpm build |