3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-06 17:10:53 +00:00
z3/.github/workflows
Lev Nachmanson 87c22204a4
ci(nightly): remove issue-oracle steps (moved to Z3Prover/bench) (#9712)
## Why

Removes the three issue-oracle steps from the Ubuntu nightly job. They
have been failing every nightly run since they landed in #9688 — see
[run
26927938635](https://github.com/Z3Prover/z3/actions/runs/26927938635/job/79441695358):

- **`Clone bench (for issue-oracle smoke test)`** → exit 128 with
`fatal: could not read Username for 'https://github.com'`, because
`Z3Prover/bench` is a private repo and the workflow had no credentials
for it.
- **`Run issue-oracle smoke test`** → exit 2 because
`bench/scripts/issues_check_oracle.py` was never downloaded.
- **`Upload issue-oracle report`** → warning because the JSON report was
never produced.

All three were absorbed by `continue-on-error: true`, so the job stayed
green, but every nightly emitted two stale red error annotations and
**the smoke test never actually ran**.

## What replaces it

The smoke test has been moved to a new workflow in `Z3Prover/bench`:
[`.github/workflows/issue-oracle.yml`](https://github.com/Z3Prover/bench/blob/ci/issue-oracle-pull-z3-nightly/.github/workflows/issue-oracle.yml)
— see **Z3Prover/bench PR #2504**.

The bench-side workflow:
- runs at 04:30 UTC daily (this repo's nightly runs at 02:00 UTC + DAG,
so ~2.5 h slack);
- pulls the `z3-*-x64-glibc-*.zip` asset from **this repo's public
`Nightly` release** via `gh release download` — unauthenticated for
`Z3Prover/z3` because z3 is public, so **no cross-repo PAT and no
`BENCH_REPO_TOKEN` secret** are required;
- checks the release's `publishedAt` is < 18 h old, so a skipped/failed
upstream nightly reds the workflow instead of silently re-testing
yesterday's binary;
- runs `issues_check_oracle.py` with the exact same smoke-test budget
the deleted step used (`--max 200 --timeout 5 --wallclock 20 --jobs 0`,
outer `timeout 90`);
- uploads `issue-oracle-report.json` as an artifact (7-day retention).

## Scope of this PR

Only the three dead steps are deleted; the downstream `Upload artifact`
(`UbuntuBuild`) step and everything that depends on it
(`deploy-nightly`, etc.) are unchanged. A short comment replaces the
deleted block to direct future readers to the new home.

## Merge order

This PR can land **before, after, or simultaneously with** the
bench-side PR. There is no functional regression either way:

- Today, the deleted steps produce zero useful output (just noisy
annotations). Removing them is strictly an improvement to nightly log
signal.
- The bench-side workflow stands on its own and produces output the
moment it lands (since it pulls from the already-existing `Nightly`
release).

## Validation

- `python -c "import yaml;
yaml.safe_load(open('.github/workflows/nightly.yml'))"` → OK.
- Search confirms no remaining live references to `bench/`,
`BENCH_REPO_TOKEN`, or `issue-oracle-report.json` in `nightly.yml` (only
the explanatory comment in the deletion block).
- Diff: -56 / +9, single file.
---

**Companion PR (do not merge before this one is reviewed):**
https://github.com/Z3Prover/bench/pull/2504

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-04 11:01:34 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -07:00
android-build.yml Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#9300) 2026-04-19 16:51:02 +02:00
api-coherence-checker.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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/cache from 5.0.4 to 5.0.5 (#9299) 2026-04-19 15:57:29 +02:00
ci.yml Make manylinux Python selection dynamic in CI and release workflows (#9502) 2026-05-12 12:42:04 -04:00
code-conventions-analyzer.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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/upload-artifact from 7.0.0 to 7.0.1 (#9300) 2026-04-19 16:51:02 +02:00
cross-build.yml Bump actions/checkout from 5.0.1 to 6.0.2 (#9018) 2026-03-16 15:52:35 -07:00
csa-analysis.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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/upload-artifact from 7.0.0 to 7.0.1 (#9300) 2026-04-19 16:51:02 +02:00
issue-backlog-processor.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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/upload-artifact from 7.0.0 to 7.0.1 (#9300) 2026-04-19 16:51:02 +02:00
msvc-static-build-clang-cl.yml Bump actions/checkout from 5.0.1 to 6.0.2 (#9018) 2026-03-16 15:52:35 -07:00
msvc-static-build.yml Bump actions/checkout from 5.0.1 to 6.0.2 (#9018) 2026-03-16 15:52:35 -07:00
nightly-validation.yml Add riscv64 wheel builds to nightly and release PyPI publishing (#9153) 2026-03-28 15:26:59 -07:00
nightly.yml ci(nightly): remove issue-oracle steps (moved to Z3Prover/bench) (#9712) 2026-06-04 11:01:34 -07:00
nuget-build.yml Bump nuget/setup-nuget from 3 to 4 (#9350) 2026-04-21 19:26:55 +02:00
ocaml.yaml Bump actions/cache from 5.0.4 to 5.0.5 (#9299) 2026-04-19 15:57:29 +02:00
ostrich-benchmark.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 5.0.1 to 6.0.2 (#9018) 2026-03-16 15:52:35 -07:00
qf-s-benchmark.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 CI: validate libz3.dylib architecture on macOS to prevent #9662 regression (#9669) 2026-05-29 16:00:36 -07:00
smtlib-benchmark-finder.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 mymindstorm/setup-emsdk from 15 to 16 (#9297) 2026-04-19 15:57:13 +02:00
wasm.yml Bump mymindstorm/setup-emsdk from 15 to 16 (#9297) 2026-04-19 15:57:13 +02:00
Windows.yml Bump microsoft/setup-msbuild from 2 to 3 (#9109) 2026-03-23 16:33:25 -07:00
wip.yml Bump actions/checkout from 5.0.1 to 6.0.2 (#9018) 2026-03-16 15:52:35 -07:00
workflow-suggestion-agent.lock.yml Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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 Bump github/gh-aw-actions from 0.76.1 to 0.77.0 (#9661) 2026-06-01 16:01:32 -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