Report graph input readiness #1097
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-test: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Enable pnpm | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@11.1.3 --activate | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.14.1 | |
| - name: Build native compiler | |
| run: make -C native/zero-c | |
| - name: Verify embedded skill data | |
| run: | | |
| node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/embed-skill-data.mts | |
| git diff --exit-code native/zero-c/src/embedded_skills.inc | |
| - run: pnpm install --frozen-lockfile | |
| - name: Smoke test | |
| run: pnpm run check | |
| - name: Repository graph check | |
| run: pnpm run repository-graph:check | |
| - name: Conformance suite | |
| run: pnpm run conformance:local | |
| - name: Native tests | |
| run: pnpm run native:test:local | |
| - name: Rosetta tasks | |
| run: pnpm run rosetta:local | |
| - name: Stdlib contracts | |
| run: pnpm run stdlib:contracts | |
| - name: Native sanitizer smoke | |
| run: pnpm run native:sanitize | |
| - name: TypeScript tests | |
| run: pnpm run test:zero | |
| - name: Docs tests | |
| run: pnpm run docs:test | |
| - name: Extension tests | |
| run: pnpm run extension:test | |
| - name: Command contract snapshots | |
| run: pnpm run command-contracts:local | |
| - name: Benchmark smoke | |
| env: | |
| VERCEL_OIDC_TOKEN: ${{ secrets.VERCEL_OIDC_TOKEN }} | |
| run: | | |
| if [[ -n "${VERCEL_OIDC_TOKEN:-}" ]]; then | |
| ZERO_BENCH_RUNS=1 pnpm run bench | |
| else | |
| ZERO_BENCH_RUNS=1 pnpm run bench:local | |
| fi | |
| - name: Cross-target smoke | |
| run: | | |
| bin/zero check --target linux-musl-x64 examples/memory-package | |
| bin/zero build --emit obj --target linux-musl-x64 examples/direct-obj-add.0 --out .zero/out/direct-obj-add-linux-musl.o | |
| bin/zero build --target linux-musl-x64 examples/hello.0 --out .zero/out/hello-linux-musl | |
| bin/zero build --target win32-x64.exe examples/hello.0 --out .zero/out/hello-win32 | |
| - name: Release artifact build smoke | |
| run: | | |
| mkdir -p .zero/ci-release | |
| node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/embed-skill-data.mts | |
| ZIG_GLOBAL_CACHE_DIR=.zero/zig-global-cache ZIG_LOCAL_CACHE_DIR=.zero/zig-local-cache zig cc -target x86_64-linux-musl -std=c11 -D_POSIX_C_SOURCE=200809L -Os -Inative/zero-c/include native/zero-c/src/*.c -o .zero/ci-release/zero-linux-musl-x64 | |
| ./.zero/ci-release/zero-linux-musl-x64 --version | |
| ./.zero/ci-release/zero-linux-musl-x64 skills list --json |