3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-08 18:10:57 +00:00
z3/.github/workflows
Copilot 60ae0a81b7
Replace agentic F* build pipeline with standard GitHub Actions workflow (#9745)
This change replaces the existing agentic workflow with a standard
GitHub Actions workflow that builds Z3 and then builds FStar against
that Z3. The workflow remains parameterized for both toolchains and
supports exercising `smt.ho_matching` via configurable Z3 runtime args
and FStar `OTHERFLAGS`.

- **Workflow migration (agentic → standard)**
- Replaced `.github/workflows/fstar-master-build.md` + `.lock.yml` with
a single native workflow: `.github/workflows/fstar-master-build.yml`.
- Removed dependency on agentic frontmatter, safe-outputs, and
runtime-import flow.

- **Configurable build inputs**
  - Added `workflow_dispatch` inputs for:
    - `z3_ref`, `z3_cmake_args`, `z3_runtime_args`
    - `fstar_ref`, `fstar_opam_switch`, `fstar_otherflags`
    - `discussion_category`
  - Defaults preserve the requested ho-matching exercise path:
    - `z3_runtime_args: smt.ho_matching=true`
    - `fstar_otherflags: --smt.ho_matching true`

- **Build and integration flow**
  - Builds Z3 from configured ref in `build/release` with CMake+Ninja.
- Clones/builds FStar from configured ref, wiring it to the just-built
Z3 (including version override and PATH aliases expected by FStar).

- **Discussion reporting without agents**
  - Adds an `actions/github-script` step that:
    - resolves discussion category ID by name,
- posts a summary discussion with inputs, produced versions, commit, and
workflow run URL.

- **Failure diagnostics hardening**
- Added explicit failure messages for missing parsed Z3 version and
missing FStar executable.
  - Added defensive handling when parsing generated version text.

```yaml
on:
  workflow_dispatch:
    inputs:
      z3_runtime_args:
        default: "smt.ho_matching=true"
      fstar_otherflags:
        default: "--smt.ho_matching true"
```

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-06-06 12:44:11 -07:00
..
shared Upgrade agentic workflows to gh-aw v0.36.0 (#8122) 2026-01-08 11:50:35 -08:00
a3-python.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
a3-python.md Add noop report-as-issue: false to all agentic workflow frontmatter 2026-03-12 20:01:30 +00:00
academic-citation-tracker.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
academic-citation-tracker.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
agentics-maintenance.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
android-build.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
api-coherence-checker.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
api-coherence-checker.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
build-warning-fixer.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
build-warning-fixer.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
build-z3-cache.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
ci.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
code-conventions-analyzer.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
code-conventions-analyzer.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
code-simplifier.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
code-simplifier.md Add noop report-as-issue: false to code-simplifier workflow (#9397) 2026-04-26 18:28:30 +02:00
compare-stats-anomaly-reporter.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
compare-stats-anomaly-reporter.md Update compare-stats anomaly reporter to read benchmark stats from /z3/ (#9650) 2026-05-27 09:57:20 -07:00
copilot-setup-steps.yml update aw to current version 2026-01-08 18:15:03 +00:00
coverage.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
cross-build.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
csa-analysis.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
csa-analysis.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
docs.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
fstar-master-build.yml Replace agentic F* build pipeline with standard GitHub Actions workflow (#9745) 2026-06-06 12:44:11 -07:00
issue-backlog-processor.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
issue-backlog-processor.md Fix Issue Backlog Processor: prevent context exhaustion by batching and requiring safe output (#9272) 2026-04-11 10:21:01 -07:00
mark-prs-ready-for-review.yml Bump actions/github-script from 8.0.0 to 9.0.0 (#9296) 2026-04-19 16:49:03 +02:00
memory-safety-report.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
memory-safety-report.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
memory-safety.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
msvc-static-build-clang-cl.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
msvc-static-build.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
nightly-validation.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
nightly.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
nuget-build.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
ocaml.yaml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
ostrich-benchmark.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
ostrich-benchmark.md fix(ostrich-benchmark): add safeoutputs keepalive noop calls before long benchmark run (#9313) 2026-04-16 03:22:33 +02:00
pyodide.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
qf-s-benchmark.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
qf-s-benchmark.md fix(qf-s-benchmark): add safeoutputs keepalive noop after build, reduce cap 500→300 (#9290) 2026-04-12 18:26:55 -07:00
release-notes-updater.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
release-notes-updater.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
release.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
smtlib-benchmark-finder.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
smtlib-benchmark-finder.md Add smtlib-benchmark-finder agentic workflow (#9629) 2026-05-26 15:28:11 -07:00
specbot-crash-analyzer.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
specbot-crash-analyzer.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
tactic-to-simplifier.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
tactic-to-simplifier.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
tptp-benchmark.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
tptp-benchmark.md Add weekly TPTP front-end benchmark workflow (#9523) 2026-05-13 06:05:08 -04:00
wasm-release.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
wasm.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
Windows.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
wip.yml Bump actions/checkout from 6.0.2 to 6.0.3 (#9715) 2026-06-04 16:14:05 -07:00
workflow-suggestion-agent.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
workflow-suggestion-agent.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00
zipt-code-reviewer.lock.yml Add agentic workflow to build latest F* master against latest Z3 master (#9733) 2026-06-05 14:45:00 -07:00
zipt-code-reviewer.md Fix agentic workflow compilation errors (gh-aw v0.68 compat) (#9275) 2026-04-11 10:19:45 -07:00