Fix native OMP eval catalog compatibility and tool evidence (#85) #293
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: | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-review: | |
| if: github.event_name == 'pull_request' && github.event.repository.private == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 | |
| with: | |
| persist-credentials: false | |
| - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 | |
| with: | |
| bun-version: 1.4.0 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 | |
| with: | |
| node-version: 24.15.0 | |
| - run: bun install --frozen-lockfile | |
| - run: bun run audit | |
| - run: bun run fmt:check | |
| - run: bun run lint | |
| - run: bun run check | |
| - run: bun run evals:typecheck | |
| - run: bun run evals:build | |
| - run: bun run build-storybook | |
| - run: bun run test | |
| - run: bun run check:target-conformance | |
| - run: bun run artifacts | |
| - run: bun run verify:artifacts | |
| - run: bun run smoke:install | |
| - run: bun run check:public-boundary | |
| - name: Install pinned Codex marketplace CLI | |
| if: github.event_name == 'push' | |
| env: | |
| BUN_INSTALL_CACHE_DIR: ${{ runner.temp }}/codex-cli-cache | |
| CODEX_CLI_ROOT: ${{ runner.temp }}/codex-cli | |
| run: | | |
| mkdir -p "$CODEX_CLI_ROOT" | |
| printf '{"private":true}\n' > "$CODEX_CLI_ROOT/package.json" | |
| bun add --cwd "$CODEX_CLI_ROOT" --exact @openai/codex@0.149.0-alpha.4.3 | |
| - name: Smoke Codex marketplace at published revision | |
| if: github.event_name == 'push' | |
| env: | |
| CODEX_MARKETPLACE_EXECUTABLE: ${{ runner.temp }}/codex-cli/node_modules/.bin/codex | |
| CODEX_MARKETPLACE_REPOSITORY_TOKEN: ${{ github.token }} | |
| CODEX_MARKETPLACE_REF: ${{ github.sha }} | |
| CODEX_MARKETPLACE_REPOSITORY: ${{ github.repository }} | |
| run: >- | |
| bun run check:marketplace:codex -- | |
| --executable "$CODEX_MARKETPLACE_EXECUTABLE" | |
| --repository "$CODEX_MARKETPLACE_REPOSITORY" | |
| --ref "$CODEX_MARKETPLACE_REF" | |
| - name: Remove temporary Codex CLI state | |
| if: always() && github.event_name == 'push' | |
| run: rm -rf "$RUNNER_TEMP/codex-cli" "$RUNNER_TEMP/codex-cli-cache" | |
| - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 | |
| with: | |
| name: receipts | |
| path: dist/receipts | |
| retention-days: 7 |