mirror of
https://github.com/Z3Prover/z3
synced 2026-07-04 14:26:10 +00:00
Merge branch 'Z3Prover:master' into z3-skill-exploration
This commit is contained in:
commit
4e0a41252a
55 changed files with 3119 additions and 343 deletions
219
.github/agentics/qf-s-benchmark.md
vendored
Normal file
219
.github/agentics/qf-s-benchmark.md
vendored
Normal file
|
|
@ -0,0 +1,219 @@
|
||||||
|
<!-- This prompt will be imported in the agentic workflow .github/workflows/qf-s-benchmark.md at runtime. -->
|
||||||
|
<!-- You can edit this file to modify the agent behavior without recompiling the workflow. -->
|
||||||
|
|
||||||
|
# ZIPT String Solver Benchmark
|
||||||
|
|
||||||
|
You are an AI agent that benchmarks the Z3 string solvers (`seq` and `nseq`) on QF_S SMT-LIB2 benchmarks from the `c3` branch, and publishes a summary report as a GitHub discussion.
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
- **Repository**: ${{ github.repository }}
|
||||||
|
- **Workspace**: ${{ github.workspace }}
|
||||||
|
- **Branch**: c3 (already checked out by the workflow setup step)
|
||||||
|
|
||||||
|
## Phase 1: Build Z3
|
||||||
|
|
||||||
|
Build Z3 from the checked-out `c3` branch using CMake + Ninja.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ${{ github.workspace }}
|
||||||
|
|
||||||
|
# Install build dependencies if missing
|
||||||
|
sudo apt-get install -y ninja-build cmake python3 zstd 2>/dev/null || true
|
||||||
|
|
||||||
|
# Configure the build
|
||||||
|
mkdir -p build
|
||||||
|
cd build
|
||||||
|
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release 2>&1 | tail -20
|
||||||
|
|
||||||
|
# Build z3 binary (this takes ~15-17 minutes)
|
||||||
|
ninja -j$(nproc) z3 2>&1 | tail -30
|
||||||
|
|
||||||
|
# Verify the build succeeded
|
||||||
|
./z3 --version
|
||||||
|
```
|
||||||
|
|
||||||
|
If the build fails, report the error clearly and exit without proceeding.
|
||||||
|
|
||||||
|
## Phase 2: Extract and Select Benchmark Files
|
||||||
|
|
||||||
|
Extract the QF_S benchmark archive and randomly select 50 files.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ${{ github.workspace }}
|
||||||
|
|
||||||
|
# Extract the archive
|
||||||
|
mkdir -p /tmp/qfs_benchmarks
|
||||||
|
tar --zstd -xf tests/QF_S.tar.zst -C /tmp/qfs_benchmarks
|
||||||
|
|
||||||
|
# List all .smt2 files
|
||||||
|
find /tmp/qfs_benchmarks -name "*.smt2" -type f > /tmp/all_qfs_files.txt
|
||||||
|
TOTAL_FILES=$(wc -l < /tmp/all_qfs_files.txt)
|
||||||
|
echo "Total QF_S files: $TOTAL_FILES"
|
||||||
|
|
||||||
|
# Randomly select 50 files
|
||||||
|
shuf -n 50 /tmp/all_qfs_files.txt > /tmp/selected_files.txt
|
||||||
|
echo "Selected 50 files for benchmarking"
|
||||||
|
cat /tmp/selected_files.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
## Phase 3: Run Benchmarks
|
||||||
|
|
||||||
|
Run each of the 50 selected files with both string solvers. Use a 10-second timeout (`-T:10`). Also wrap each run with `time` to capture wall-clock duration.
|
||||||
|
|
||||||
|
For each file, run:
|
||||||
|
1. `z3 smt.string_solver=seq -T:10 <file>`
|
||||||
|
2. `z3 smt.string_solver=nseq -T:10 <file>`
|
||||||
|
|
||||||
|
Capture:
|
||||||
|
- **Verdict**: `sat`, `unsat`, `unknown`, `timeout` (if exit code indicates timeout), or `bug` (if z3 crashes / produces a non-standard result, or if seq and nseq disagree on sat vs unsat)
|
||||||
|
- **Time** (seconds): wall-clock time for the run
|
||||||
|
|
||||||
|
Use a bash script to automate this:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
Z3=${{ github.workspace }}/build/z3
|
||||||
|
RESULTS=/tmp/benchmark_results.tsv
|
||||||
|
echo -e "file\tseq_verdict\tseq_time\tnseq_verdict\tnseq_time\tnotes" > "$RESULTS"
|
||||||
|
|
||||||
|
run_z3() {
|
||||||
|
local solver="$1"
|
||||||
|
local file="$2"
|
||||||
|
local start end elapsed verdict output exit_code
|
||||||
|
|
||||||
|
start=$(date +%s%3N)
|
||||||
|
output=$(timeout 12 "$Z3" "smt.string_solver=$solver" -T:10 "$file" 2>&1)
|
||||||
|
exit_code=$?
|
||||||
|
end=$(date +%s%3N)
|
||||||
|
elapsed=$(echo "scale=3; ($end - $start) / 1000" | bc)
|
||||||
|
|
||||||
|
# Parse verdict
|
||||||
|
if echo "$output" | grep -q "^unsat"; then
|
||||||
|
verdict="unsat"
|
||||||
|
elif echo "$output" | grep -q "^sat"; then
|
||||||
|
verdict="sat"
|
||||||
|
elif echo "$output" | grep -q "^unknown"; then
|
||||||
|
verdict="unknown"
|
||||||
|
elif [ "$exit_code" -eq 124 ]; then
|
||||||
|
verdict="timeout"
|
||||||
|
elif echo "$output" | grep -qi "error\|assertion\|segfault\|SIGABRT\|exception"; then
|
||||||
|
verdict="bug"
|
||||||
|
else
|
||||||
|
verdict="unknown"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "$verdict $elapsed"
|
||||||
|
}
|
||||||
|
|
||||||
|
while IFS= read -r file; do
|
||||||
|
fname=$(basename "$file")
|
||||||
|
seq_result=$(run_z3 seq "$file")
|
||||||
|
nseq_result=$(run_z3 nseq "$file")
|
||||||
|
|
||||||
|
seq_verdict=$(echo "$seq_result" | cut -d' ' -f1)
|
||||||
|
seq_time=$(echo "$seq_result" | cut -d' ' -f2)
|
||||||
|
nseq_verdict=$(echo "$nseq_result" | cut -d' ' -f1)
|
||||||
|
nseq_time=$(echo "$nseq_result" | cut -d' ' -f2)
|
||||||
|
|
||||||
|
# Flag as bug if the two solvers disagree on sat vs unsat
|
||||||
|
notes=""
|
||||||
|
if { [ "$seq_verdict" = "sat" ] && [ "$nseq_verdict" = "unsat" ]; } || \
|
||||||
|
{ [ "$seq_verdict" = "unsat" ] && [ "$nseq_verdict" = "sat" ]; }; then
|
||||||
|
notes="SOUNDNESS_DISAGREEMENT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e "$fname\t$seq_verdict\t$seq_time\t$nseq_verdict\t$nseq_time\t$notes" >> "$RESULTS"
|
||||||
|
echo "[$fname] seq=$seq_verdict(${seq_time}s) nseq=$nseq_verdict(${nseq_time}s) $notes"
|
||||||
|
done < /tmp/selected_files.txt
|
||||||
|
|
||||||
|
echo "Benchmark run complete. Results saved to $RESULTS"
|
||||||
|
```
|
||||||
|
|
||||||
|
Save this script to `/tmp/run_benchmarks.sh`, make it executable, and run it.
|
||||||
|
|
||||||
|
## Phase 4: Generate Summary Report
|
||||||
|
|
||||||
|
Read `/tmp/benchmark_results.tsv` and compute statistics. Then generate a Markdown report.
|
||||||
|
|
||||||
|
Compute:
|
||||||
|
- **Total benchmarks**: 50
|
||||||
|
- **Per solver (seq and nseq)**: count of sat / unsat / unknown / timeout / bug verdicts
|
||||||
|
- **Total time used**: sum of all times for each solver
|
||||||
|
- **Average time per benchmark**: total_time / 50
|
||||||
|
- **Soundness disagreements**: files where seq says sat but nseq says unsat or vice versa (these are the most critical bugs)
|
||||||
|
- **Bugs / crashes**: files with error/crash verdicts
|
||||||
|
|
||||||
|
Format the report as a GitHub Discussion post (GitHub-flavored Markdown):
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
### ZIPT Benchmark Report — Z3 c3 branch
|
||||||
|
|
||||||
|
**Date**: <today's date>
|
||||||
|
**Branch**: c3
|
||||||
|
**Benchmark set**: QF_S (50 randomly selected files from tests/QF_S.tar.zst)
|
||||||
|
**Timeout**: 10 seconds per benchmark (`-T:10`)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
| Metric | seq solver | nseq solver |
|
||||||
|
|--------|-----------|-------------|
|
||||||
|
| sat | X | X |
|
||||||
|
| unsat | X | X |
|
||||||
|
| unknown | X | X |
|
||||||
|
| timeout | X | X |
|
||||||
|
| bug/crash | X | X |
|
||||||
|
| **Total time (s)** | X.XXX | X.XXX |
|
||||||
|
| **Avg time/benchmark (s)** | X.XXX | X.XXX |
|
||||||
|
|
||||||
|
**Soundness disagreements** (seq says sat, nseq says unsat or vice versa): N
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Per-File Results
|
||||||
|
|
||||||
|
| # | File | seq verdict | seq time (s) | nseq verdict | nseq time (s) | Notes |
|
||||||
|
|---|------|-------------|-------------|--------------|--------------|-------|
|
||||||
|
| 1 | benchmark_0001.smt2 | sat | 0.123 | sat | 0.456 | |
|
||||||
|
| ... | ... | ... | ... | ... | ... | ... |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Notable Issues
|
||||||
|
|
||||||
|
#### Soundness Disagreements (Critical)
|
||||||
|
<list files where seq and nseq disagree on sat/unsat>
|
||||||
|
|
||||||
|
#### Crashes / Bugs
|
||||||
|
<list files where either solver crashed or produced an error>
|
||||||
|
|
||||||
|
#### Slow Benchmarks (> 8s)
|
||||||
|
<list files that took more than 8 seconds>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Generated automatically by the ZIPT Benchmark workflow on the c3 branch.*
|
||||||
|
```
|
||||||
|
|
||||||
|
## Phase 5: Post to GitHub Discussion
|
||||||
|
|
||||||
|
Post the Markdown report as a new GitHub Discussion using the `create-discussion` safe output.
|
||||||
|
|
||||||
|
- **Category**: "Agentic Workflows"
|
||||||
|
- **Title**: `[ZIPT Benchmark] Z3 c3 branch — <date>`
|
||||||
|
- Close older discussions with the same title prefix to avoid clutter.
|
||||||
|
|
||||||
|
## Guidelines
|
||||||
|
|
||||||
|
- **Always build from c3 branch**: The workspace is already checked out on c3; don't change branches.
|
||||||
|
- **Handle build failures gracefully**: If Z3 fails to build, report the error and create a brief discussion noting the build failure.
|
||||||
|
- **Handle missing zstd**: If `tar --zstd` fails, try `zstd -d tests/QF_S.tar.zst --stdout | tar -x -C /tmp/qfs_benchmarks`.
|
||||||
|
- **Be precise with timing**: Use millisecond-precision timestamps and report times in seconds with 3 decimal places.
|
||||||
|
- **Distinguish timeout from unknown**: A timeout (process killed after 12s) is different from `(unknown)` returned by z3.
|
||||||
|
- **Report soundness bugs prominently**: If any benchmark shows seq=sat but nseq=unsat (or vice versa), highlight it as a critical finding.
|
||||||
|
- **Don't skip any file**: Run all 50 files even if some fail.
|
||||||
|
- **Large report**: If the per-file table is very long, put it in a `<details>` collapsible section.
|
||||||
38
.github/agents/agentic-workflows.agent.md
vendored
38
.github/agents/agentic-workflows.agent.md
vendored
|
|
@ -27,7 +27,7 @@ Workflows may optionally include:
|
||||||
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
|
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
|
||||||
- Workflow lock files: `.github/workflows/*.lock.yml`
|
- Workflow lock files: `.github/workflows/*.lock.yml`
|
||||||
- Shared components: `.github/workflows/shared/*.md`
|
- Shared components: `.github/workflows/shared/*.md`
|
||||||
- Configuration: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/github-agentic-workflows.md
|
- Configuration: https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/github-agentic-workflows.md
|
||||||
|
|
||||||
## Problems This Solves
|
## Problems This Solves
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@ When you interact with this agent, it will:
|
||||||
### Create New Workflow
|
### Create New Workflow
|
||||||
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
|
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/create-agentic-workflow.md
|
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/create-agentic-workflow.md
|
||||||
|
|
||||||
**Use cases**:
|
**Use cases**:
|
||||||
- "Create a workflow that triages issues"
|
- "Create a workflow that triages issues"
|
||||||
|
|
@ -59,7 +59,7 @@ When you interact with this agent, it will:
|
||||||
### Update Existing Workflow
|
### Update Existing Workflow
|
||||||
**Load when**: User wants to modify, improve, or refactor an existing workflow
|
**Load when**: User wants to modify, improve, or refactor an existing workflow
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/update-agentic-workflow.md
|
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/update-agentic-workflow.md
|
||||||
|
|
||||||
**Use cases**:
|
**Use cases**:
|
||||||
- "Add web-fetch tool to the issue-classifier workflow"
|
- "Add web-fetch tool to the issue-classifier workflow"
|
||||||
|
|
@ -69,7 +69,7 @@ When you interact with this agent, it will:
|
||||||
### Debug Workflow
|
### Debug Workflow
|
||||||
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
|
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/debug-agentic-workflow.md
|
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/debug-agentic-workflow.md
|
||||||
|
|
||||||
**Use cases**:
|
**Use cases**:
|
||||||
- "Why is this workflow failing?"
|
- "Why is this workflow failing?"
|
||||||
|
|
@ -79,7 +79,7 @@ When you interact with this agent, it will:
|
||||||
### Upgrade Agentic Workflows
|
### Upgrade Agentic Workflows
|
||||||
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
|
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/upgrade-agentic-workflows.md
|
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/upgrade-agentic-workflows.md
|
||||||
|
|
||||||
**Use cases**:
|
**Use cases**:
|
||||||
- "Upgrade all workflows to the latest version"
|
- "Upgrade all workflows to the latest version"
|
||||||
|
|
@ -89,37 +89,13 @@ When you interact with this agent, it will:
|
||||||
### Create Shared Agentic Workflow
|
### Create Shared Agentic Workflow
|
||||||
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
|
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/create-shared-agentic-workflow.md
|
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/create-shared-agentic-workflow.md
|
||||||
|
|
||||||
**Use cases**:
|
**Use cases**:
|
||||||
- "Create a shared component for Notion integration"
|
- "Create a shared component for Notion integration"
|
||||||
- "Wrap the Slack MCP server as a reusable component"
|
- "Wrap the Slack MCP server as a reusable component"
|
||||||
- "Design a shared workflow for database queries"
|
- "Design a shared workflow for database queries"
|
||||||
|
|
||||||
### Orchestration and Delegation
|
|
||||||
|
|
||||||
**Load when**: Creating or updating workflows that coordinate multiple agents or dispatch work to other workflows
|
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/orchestration.md
|
|
||||||
|
|
||||||
**Use cases**:
|
|
||||||
- Assigning work to AI coding agents
|
|
||||||
- Dispatching specialized worker workflows
|
|
||||||
- Using correlation IDs for tracking
|
|
||||||
- Orchestration design patterns
|
|
||||||
|
|
||||||
### GitHub Projects Integration
|
|
||||||
|
|
||||||
**Load when**: Creating or updating workflows that manage GitHub Projects v2
|
|
||||||
|
|
||||||
**Prompt file**: https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/projects.md
|
|
||||||
|
|
||||||
**Use cases**:
|
|
||||||
- Tracking items and fields with update-project
|
|
||||||
- Posting periodic run summaries
|
|
||||||
- Creating new projects
|
|
||||||
- Projects v2 authentication and configuration
|
|
||||||
|
|
||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
When a user interacts with you:
|
When a user interacts with you:
|
||||||
|
|
@ -160,7 +136,7 @@ gh aw compile --validate
|
||||||
|
|
||||||
## Important Notes
|
## Important Notes
|
||||||
|
|
||||||
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.45.3/.github/aw/github-agentic-workflows.md for complete documentation
|
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.45.6/.github/aw/github-agentic-workflows.md for complete documentation
|
||||||
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
|
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
|
||||||
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
|
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
|
||||||
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF
|
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF
|
||||||
|
|
|
||||||
2
.github/workflows/Windows.yml
vendored
2
.github/workflows/Windows.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
- name: Add msbuild to PATH
|
- name: Add msbuild to PATH
|
||||||
uses: microsoft/setup-msbuild@v2
|
uses: microsoft/setup-msbuild@v2
|
||||||
- run: |
|
- run: |
|
||||||
|
|
|
||||||
10
.github/workflows/a3-python.lock.yml
generated
vendored
10
.github/workflows/a3-python.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -247,7 +247,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
@ -819,7 +819,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -912,7 +912,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1023,7 +1023,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
|
||||||
2
.github/workflows/agentics-maintenance.yml
vendored
2
.github/workflows/agentics-maintenance.yml
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@v0.51.6
|
uses: github/gh-aw/actions/setup@v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
|
|
||||||
|
|
|
||||||
4
.github/workflows/android-build.yml
vendored
4
.github/workflows/android-build.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Configure CMake and build
|
- name: Configure CMake and build
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -33,7 +33,7 @@ jobs:
|
||||||
tar -cvf z3-build-${{ matrix.android-abi }}.tar *.jar *.so
|
tar -cvf z3-build-${{ matrix.android-abi }}.tar *.jar *.so
|
||||||
|
|
||||||
- name: Archive production artifacts
|
- name: Archive production artifacts
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: android-build-${{ matrix.android-abi }}
|
name: android-build-${{ matrix.android-abi }}
|
||||||
path: build/z3-build-${{ matrix.android-abi }}.tar
|
path: build/z3-build-${{ matrix.android-abi }}.tar
|
||||||
|
|
|
||||||
12
.github/workflows/api-coherence-checker.lock.yml
generated
vendored
12
.github/workflows/api-coherence-checker.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -254,7 +254,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -831,7 +831,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -922,7 +922,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1033,7 +1033,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1070,7 +1070,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
10
.github/workflows/build-warning-fixer.lock.yml
generated
vendored
10
.github/workflows/build-warning-fixer.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -242,7 +242,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
@ -804,7 +804,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -909,7 +909,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1021,7 +1021,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
|
||||||
2
.github/workflows/build-z3-cache.yml
vendored
2
.github/workflows/build-z3-cache.yml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
|
||||||
88
.github/workflows/ci.yml
vendored
88
.github/workflows/ci.yml
vendored
|
|
@ -38,7 +38,7 @@ jobs:
|
||||||
runRegressions: false
|
runRegressions: false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -81,7 +81,7 @@ jobs:
|
||||||
container: "quay.io/pypa/manylinux_2_34_x86_64:latest"
|
container: "quay.io/pypa/manylinux_2_34_x86_64:latest"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python virtual environment
|
- name: Setup Python virtual environment
|
||||||
run: "/opt/python/cp38-cp38/bin/python -m venv $PWD/env"
|
run: "/opt/python/cp38-cp38/bin/python -m venv $PWD/env"
|
||||||
|
|
@ -113,7 +113,7 @@ jobs:
|
||||||
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download ARM toolchain
|
- name: Download ARM toolchain
|
||||||
run: curl -L -o /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-linux-gnu.tar.xz'
|
run: curl -L -o /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-linux-gnu.tar.xz'
|
||||||
|
|
@ -149,7 +149,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup OCaml
|
- name: Setup OCaml
|
||||||
uses: ocaml/setup-ocaml@v3
|
uses: ocaml/setup-ocaml@v3
|
||||||
|
|
@ -204,7 +204,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup OCaml
|
- name: Setup OCaml
|
||||||
uses: ocaml/setup-ocaml@v3
|
uses: ocaml/setup-ocaml@v3
|
||||||
|
|
@ -298,7 +298,7 @@ jobs:
|
||||||
runTests: false
|
runTests: false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -388,7 +388,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -415,6 +415,78 @@ jobs:
|
||||||
- name: Run regressions
|
- name: Run regressions
|
||||||
run: python z3test/scripts/test_benchmarks.py build/z3 z3test/regressions/smt2
|
run: python z3test/scripts/test_benchmarks.py build/z3 z3test/regressions/smt2
|
||||||
|
|
||||||
|
- name: Validate JNI library architecture matches host
|
||||||
|
run: |
|
||||||
|
echo "Checking libz3java.dylib architecture..."
|
||||||
|
ARCH=$(lipo -archs build/libz3java.dylib)
|
||||||
|
HOST_ARCH=$(uname -m)
|
||||||
|
echo "libz3java.dylib arch: $ARCH | host arch: $HOST_ARCH"
|
||||||
|
if [ "$ARCH" != "$HOST_ARCH" ]; then
|
||||||
|
echo "ERROR: libz3java.dylib has arch '$ARCH' but host is '$HOST_ARCH'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "OK: libz3java.dylib correctly built for $HOST_ARCH"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# macOS JNI cross-compilation validation (ARM64 host -> x86_64 target)
|
||||||
|
# ============================================================================
|
||||||
|
macos-jni-cross-compile:
|
||||||
|
name: "MacOS JNI cross-compile (ARM64 -> x64) architecture validation"
|
||||||
|
runs-on: macos-15
|
||||||
|
timeout-minutes: 90
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v6
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
|
- name: Configure (cross-compile ARM64 host -> x86_64 target)
|
||||||
|
run: |
|
||||||
|
CXXFLAGS="-arch x86_64" CFLAGS="-arch x86_64" LDFLAGS="-arch x86_64" \
|
||||||
|
python scripts/mk_make.py --java --arm64=false
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
cd build
|
||||||
|
make -j3 libz3java.dylib
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
- name: Validate libz3java.dylib is x86_64
|
||||||
|
run: |
|
||||||
|
echo "Checking libz3java.dylib architecture..."
|
||||||
|
ARCH=$(lipo -archs build/libz3java.dylib)
|
||||||
|
echo "libz3java.dylib architecture: $ARCH"
|
||||||
|
if [ "$ARCH" != "x86_64" ]; then
|
||||||
|
echo "ERROR: Expected x86_64 (cross-compiled target), got: $ARCH"
|
||||||
|
echo "This is the regression fixed in: JNI bindings use wrong architecture in macOS cross-compilation"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "OK: libz3java.dylib correctly built for x86_64 target on ARM64 host"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# Python script unit tests (build-script logic validation)
|
||||||
|
# ============================================================================
|
||||||
|
python-script-tests:
|
||||||
|
name: "Python build-script unit tests"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v6
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
|
- name: Run Python script unit tests
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: python -m unittest discover -s scripts/tests -p "test_*.py" -v
|
||||||
|
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
# macOS CMake Builds
|
# macOS CMake Builds
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
|
|
@ -424,7 +496,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
|
||||||
12
.github/workflows/code-conventions-analyzer.lock.yml
generated
vendored
12
.github/workflows/code-conventions-analyzer.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -249,7 +249,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
@ -910,7 +910,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1003,7 +1003,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1114,7 +1114,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1151,7 +1151,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
12
.github/workflows/code-simplifier.lock.yml
generated
vendored
12
.github/workflows/code-simplifier.lock.yml
generated
vendored
|
|
@ -54,7 +54,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -252,7 +252,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
@ -824,7 +824,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -925,7 +925,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1020,7 +1020,7 @@ jobs:
|
||||||
activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }}
|
activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Check team membership for workflow
|
- name: Check team membership for workflow
|
||||||
|
|
@ -1073,7 +1073,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
|
||||||
6
.github/workflows/coverage.yml
vendored
6
.github/workflows/coverage.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
COV_DETAILS_PATH: ${{github.workspace}}/cov-details
|
COV_DETAILS_PATH: ${{github.workspace}}/cov-details
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6.0.2
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -89,13 +89,13 @@ jobs:
|
||||||
id: date
|
id: date
|
||||||
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v7.0.0
|
- uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: coverage-${{steps.date.outputs.date}}
|
name: coverage-${{steps.date.outputs.date}}
|
||||||
path: ${{github.workspace}}/coverage.html
|
path: ${{github.workspace}}/coverage.html
|
||||||
retention-days: 4
|
retention-days: 4
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v7.0.0
|
- uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: coverage-details-${{steps.date.outputs.date}}
|
name: coverage-details-${{steps.date.outputs.date}}
|
||||||
path: ${{env.COV_DETAILS_PATH}}
|
path: ${{env.COV_DETAILS_PATH}}
|
||||||
|
|
|
||||||
2
.github/workflows/cross-build.yml
vendored
2
.github/workflows/cross-build.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install cross build tools
|
- name: Install cross build tools
|
||||||
run: apt update && apt install -y ninja-build cmake python3 g++-13-${{ matrix.arch }}-linux-gnu
|
run: apt update && apt install -y ninja-build cmake python3 g++-13-${{ matrix.arch }}-linux-gnu
|
||||||
|
|
|
||||||
10
.github/workflows/csa-analysis.lock.yml
generated
vendored
10
.github/workflows/csa-analysis.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@v0.51.6
|
uses: github/gh-aw/actions/setup@v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Validate context variables
|
- name: Validate context variables
|
||||||
|
|
@ -238,7 +238,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@v0.51.6
|
uses: github/gh-aw/actions/setup@v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -949,7 +949,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@v0.51.6
|
uses: github/gh-aw/actions/setup@v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1053,7 +1053,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@v0.51.6
|
uses: github/gh-aw/actions/setup@v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1097,7 +1097,7 @@ jobs:
|
||||||
GH_AW_WORKFLOW_ID_SANITIZED: csaanalysis
|
GH_AW_WORKFLOW_ID_SANITIZED: csaanalysis
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@v0.51.6
|
uses: github/gh-aw/actions/setup@v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
12
.github/workflows/deeptest.lock.yml
generated
vendored
12
.github/workflows/deeptest.lock.yml
generated
vendored
|
|
@ -55,7 +55,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -263,7 +263,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -885,7 +885,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -990,7 +990,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1103,7 +1103,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1166,7 +1166,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
8
.github/workflows/docs.yml
vendored
8
.github/workflows/docs.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v6
|
uses: actions/setup-go@v6
|
||||||
|
|
@ -34,7 +34,7 @@ jobs:
|
||||||
python3 mk_go_doc.py --output-dir=api/html/go --go-api-path=../src/api/go
|
python3 mk_go_doc.py --output-dir=api/html/go --go-api-path=../src/api/go
|
||||||
|
|
||||||
- name: Upload Go Documentation
|
- name: Upload Go Documentation
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: go-docs
|
name: go-docs
|
||||||
path: doc/api/html/go/
|
path: doc/api/html/go/
|
||||||
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
needs: build-go-docs
|
needs: build-go-docs
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup node
|
- name: Setup node
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
|
|
@ -125,7 +125,7 @@ jobs:
|
||||||
python3 mk_api_doc.py --js --go --output-dir=api --mld --z3py-package-path=../build-x64/python/z3 --build=../build-x64
|
python3 mk_api_doc.py --js --go --output-dir=api --mld --z3py-package-path=../build-x64/python/z3 --build=../build-x64
|
||||||
|
|
||||||
- name: Download Go Documentation
|
- name: Download Go Documentation
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: go-docs
|
name: go-docs
|
||||||
path: doc/api/html/go/
|
path: doc/api/html/go/
|
||||||
|
|
|
||||||
12
.github/workflows/issue-backlog-processor.lock.yml
generated
vendored
12
.github/workflows/issue-backlog-processor.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -254,7 +254,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
@ -858,7 +858,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -949,7 +949,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1061,7 +1061,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1098,7 +1098,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
1118
.github/workflows/memory-safety-report.lock.yml
generated
vendored
Normal file
1118
.github/workflows/memory-safety-report.lock.yml
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
4
.github/workflows/memory-safety-report.md
vendored
4
.github/workflows/memory-safety-report.md
vendored
|
|
@ -15,7 +15,7 @@ timeout-minutes: 30
|
||||||
permissions:
|
permissions:
|
||||||
actions: read
|
actions: read
|
||||||
contents: read
|
contents: read
|
||||||
discussions: write
|
discussions: read
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
|
@ -205,4 +205,4 @@ Store the current run's results in cache memory for future comparison:
|
||||||
- **DO NOT** attempt to fix the findings automatically.
|
- **DO NOT** attempt to fix the findings automatically.
|
||||||
- **DO** close older Memory Safety discussions automatically (configured via `close-older-discussions: true`).
|
- **DO** close older Memory Safety discussions automatically (configured via `close-older-discussions: true`).
|
||||||
- **DO** always report the commit SHA so findings can be correlated with specific code versions.
|
- **DO** always report the commit SHA so findings can be correlated with specific code versions.
|
||||||
- **DO** use cache memory to track trends over multiple runs.
|
- **DO** use cache memory to track trends over multiple runs.
|
||||||
14
.github/workflows/memory-safety.yml
vendored
14
.github/workflows/memory-safety.yml
vendored
|
|
@ -34,7 +34,7 @@ jobs:
|
||||||
ASAN_OPTIONS: "detect_leaks=1:halt_on_error=0:print_stats=1:log_path=/tmp/asan"
|
ASAN_OPTIONS: "detect_leaks=1:halt_on_error=0:print_stats=1:log_path=/tmp/asan"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
|
@ -107,7 +107,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload ASan reports
|
- name: Upload ASan reports
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: asan-reports
|
name: asan-reports
|
||||||
path: /tmp/asan-reports/
|
path: /tmp/asan-reports/
|
||||||
|
|
@ -124,7 +124,7 @@ jobs:
|
||||||
UBSAN_OPTIONS: "print_stacktrace=1:halt_on_error=0:log_path=/tmp/ubsan"
|
UBSAN_OPTIONS: "print_stacktrace=1:halt_on_error=0:log_path=/tmp/ubsan"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
|
@ -140,8 +140,8 @@ jobs:
|
||||||
cd build-ubsan
|
cd build-ubsan
|
||||||
CC=clang CXX=clang++ cmake \
|
CC=clang CXX=clang++ cmake \
|
||||||
-DCMAKE_BUILD_TYPE=Debug \
|
-DCMAKE_BUILD_TYPE=Debug \
|
||||||
-DCMAKE_C_FLAGS="-fsanitize=undefined -fno-omit-frame-pointer -fno-sanitize-recover=all" \
|
-DCMAKE_C_FLAGS="-fsanitize=undefined -fno-omit-frame-pointer -fsanitize-recover=all" \
|
||||||
-DCMAKE_CXX_FLAGS="-fsanitize=undefined -fno-omit-frame-pointer -fno-sanitize-recover=all" \
|
-DCMAKE_CXX_FLAGS="-fsanitize=undefined -fno-omit-frame-pointer -fsanitize-recover=all" \
|
||||||
-DCMAKE_EXE_LINKER_FLAGS="-fsanitize=undefined" \
|
-DCMAKE_EXE_LINKER_FLAGS="-fsanitize=undefined" \
|
||||||
-DCMAKE_SHARED_LINKER_FLAGS="-fsanitize=undefined" \
|
-DCMAKE_SHARED_LINKER_FLAGS="-fsanitize=undefined" \
|
||||||
-G Ninja ../
|
-G Ninja ../
|
||||||
|
|
@ -197,7 +197,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload UBSan reports
|
- name: Upload UBSan reports
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ubsan-reports
|
name: ubsan-reports
|
||||||
path: /tmp/ubsan-reports/
|
path: /tmp/ubsan-reports/
|
||||||
|
|
@ -213,7 +213,7 @@ jobs:
|
||||||
if: always()
|
if: always()
|
||||||
steps:
|
steps:
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
path: reports/
|
path: reports/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
2
.github/workflows/msvc-static-build.yml
vendored
2
.github/workflows/msvc-static-build.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
36
.github/workflows/nightly-validation.yml
vendored
36
.github/workflows/nightly-validation.yml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v5
|
||||||
|
|
@ -87,7 +87,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v5
|
||||||
|
|
@ -142,7 +142,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v5
|
||||||
|
|
@ -214,7 +214,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v5
|
||||||
|
|
@ -290,7 +290,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download Windows x64 build from release
|
- name: Download Windows x64 build from release
|
||||||
env:
|
env:
|
||||||
|
|
@ -326,7 +326,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download Windows x86 build from release
|
- name: Download Windows x86 build from release
|
||||||
env:
|
env:
|
||||||
|
|
@ -362,7 +362,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download Ubuntu x64 build from release
|
- name: Download Ubuntu x64 build from release
|
||||||
env:
|
env:
|
||||||
|
|
@ -395,7 +395,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS x64 build from release
|
- name: Download macOS x64 build from release
|
||||||
env:
|
env:
|
||||||
|
|
@ -428,7 +428,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS ARM64 build from release
|
- name: Download macOS ARM64 build from release
|
||||||
env:
|
env:
|
||||||
|
|
@ -465,7 +465,7 @@ jobs:
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -504,7 +504,7 @@ jobs:
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -544,7 +544,7 @@ jobs:
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -587,7 +587,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -616,7 +616,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -645,7 +645,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -674,7 +674,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -710,7 +710,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS x64 build from release
|
- name: Download macOS x64 build from release
|
||||||
env:
|
env:
|
||||||
|
|
@ -762,7 +762,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS ARM64 build from release
|
- name: Download macOS ARM64 build from release
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
94
.github/workflows/nightly.yml
vendored
94
.github/workflows/nightly.yml
vendored
|
|
@ -35,7 +35,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=x64
|
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=x64
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -58,7 +58,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -69,7 +69,7 @@ jobs:
|
||||||
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=arm64
|
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=arm64
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -86,10 +86,10 @@ jobs:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS x64 Build
|
- name: Download macOS x64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
@ -134,10 +134,10 @@ jobs:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS ARM64 Build
|
- name: Download macOS ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
@ -181,7 +181,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -198,7 +198,7 @@ jobs:
|
||||||
run: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
run: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: UbuntuBuild
|
name: UbuntuBuild
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -210,7 +210,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -233,7 +233,7 @@ jobs:
|
||||||
python scripts/mk_unix_dist.py --nodotnet --arch=arm64
|
python scripts/mk_unix_dist.py --nodotnet --arch=arm64
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: UbuntuArm64
|
name: UbuntuArm64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -245,7 +245,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -288,7 +288,7 @@ jobs:
|
||||||
run: zip -r z3doc.zip doc/api
|
run: zip -r z3doc.zip doc/api
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: UbuntuDoc
|
name: UbuntuDoc
|
||||||
path: z3doc.zip
|
path: z3doc.zip
|
||||||
|
|
@ -301,7 +301,7 @@ jobs:
|
||||||
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python environment
|
- name: Setup Python environment
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -318,7 +318,7 @@ jobs:
|
||||||
run: pip install ./src/api/python/wheelhouse/*.whl && python - <src/api/python/z3test.py z3 && python - <src/api/python/z3test.py z3num
|
run: pip install ./src/api/python/wheelhouse/*.whl && python - <src/api/python/z3test.py z3 && python - <src/api/python/z3test.py z3num
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildAMD64
|
name: ManyLinuxPythonBuildAMD64
|
||||||
path: src/api/python/wheelhouse/*.whl
|
path: src/api/python/wheelhouse/*.whl
|
||||||
|
|
@ -331,7 +331,7 @@ jobs:
|
||||||
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download ARM toolchain
|
- name: Download ARM toolchain
|
||||||
run: curl -L -o /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-linux-gnu.tar.xz'
|
run: curl -L -o /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-linux-gnu.tar.xz'
|
||||||
|
|
@ -358,7 +358,7 @@ jobs:
|
||||||
run: cd src/api/python && CC=aarch64-none-linux-gnu-gcc CXX=aarch64-none-linux-gnu-g++ AR=aarch64-none-linux-gnu-ar LD=aarch64-none-linux-gnu-ld Z3_CROSS_COMPILING=aarch64 python -m build && AUDITWHEEL_PLAT= auditwheel repair --best-plat dist/*.whl && cd ../../..
|
run: cd src/api/python && CC=aarch64-none-linux-gnu-gcc CXX=aarch64-none-linux-gnu-g++ AR=aarch64-none-linux-gnu-ar LD=aarch64-none-linux-gnu-ld Z3_CROSS_COMPILING=aarch64 python -m build && AUDITWHEEL_PLAT= auditwheel repair --best-plat dist/*.whl && cd ../../..
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildArm64
|
name: ManyLinuxPythonBuildArm64
|
||||||
path: src/api/python/wheelhouse/*.whl
|
path: src/api/python/wheelhouse/*.whl
|
||||||
|
|
@ -370,7 +370,7 @@ jobs:
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -384,7 +384,7 @@ jobs:
|
||||||
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x64
|
name: WindowsBuild-x64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -396,7 +396,7 @@ jobs:
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -410,7 +410,7 @@ jobs:
|
||||||
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -422,7 +422,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -436,7 +436,7 @@ jobs:
|
||||||
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }} --zip
|
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }} --zip
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-arm64
|
name: WindowsBuild-arm64
|
||||||
path: dist/arm64/*.zip
|
path: dist/arm64/*.zip
|
||||||
|
|
@ -452,7 +452,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -460,37 +460,37 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download Win64 Build
|
- name: Download Win64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x64
|
name: WindowsBuild-x64
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download Win ARM64 Build
|
- name: Download Win ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-arm64
|
name: WindowsBuild-arm64
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download Ubuntu Build
|
- name: Download Ubuntu Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: UbuntuBuild
|
name: UbuntuBuild
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download Ubuntu ARM64 Build
|
- name: Download Ubuntu ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: UbuntuArm64
|
name: UbuntuArm64
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download macOS Build
|
- name: Download macOS Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download macOS Arm64 Build
|
- name: Download macOS Arm64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: package
|
path: package
|
||||||
|
|
@ -513,7 +513,7 @@ jobs:
|
||||||
nuget pack out\Microsoft.Z3.sym.nuspec -Version ${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}.${{ github.run_number }} -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
nuget pack out\Microsoft.Z3.sym.nuspec -Version ${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}.${{ github.run_number }} -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: NuGet
|
name: NuGet
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -527,7 +527,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -535,7 +535,7 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: package
|
path: package
|
||||||
|
|
@ -558,7 +558,7 @@ jobs:
|
||||||
nuget pack out\Microsoft.Z3.x86.sym.nuspec -Version ${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}.${{ github.run_number }} -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
nuget pack out\Microsoft.Z3.x86.sym.nuspec -Version ${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}.${{ github.run_number }} -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: NuGet32
|
name: NuGet32
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -572,7 +572,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -580,43 +580,43 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download macOS x64 Build
|
- name: Download macOS x64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download macOS Arm64 Build
|
- name: Download macOS Arm64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download Win64 Build
|
- name: Download Win64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x64
|
name: WindowsBuild-x64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download Win32 Build
|
- name: Download Win32 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download Win ARM64 Build
|
- name: Download Win ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-arm64
|
name: WindowsBuild-arm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download ManyLinux AMD64 Build
|
- name: Download ManyLinux AMD64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildAMD64
|
name: ManyLinuxPythonBuildAMD64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download ManyLinux Arm64 Build
|
- name: Download ManyLinux Arm64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildArm64
|
name: ManyLinuxPythonBuildArm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
@ -651,7 +651,7 @@ jobs:
|
||||||
cp artifacts/*.whl src/api/python/dist/.
|
cp artifacts/*.whl src/api/python/dist/.
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: PythonPackages
|
name: PythonPackages
|
||||||
path: src/api/python/dist/*
|
path: src/api/python/dist/*
|
||||||
|
|
@ -681,10 +681,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
path: tmp
|
path: tmp
|
||||||
|
|
||||||
|
|
@ -749,7 +749,7 @@ jobs:
|
||||||
contents: read
|
contents: read
|
||||||
steps:
|
steps:
|
||||||
- name: Download Python packages
|
- name: Download Python packages
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: PythonPackages
|
name: PythonPackages
|
||||||
path: dist
|
path: dist
|
||||||
|
|
|
||||||
36
.github/workflows/nuget-build.yml
vendored
36
.github/workflows/nuget-build.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -34,7 +34,7 @@ jobs:
|
||||||
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.17.0' }} --zip
|
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.17.0' }} --zip
|
||||||
|
|
||||||
- name: Upload Windows x64 artifact
|
- name: Upload Windows x64 artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: windows-x64
|
name: windows-x64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -44,7 +44,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -58,7 +58,7 @@ jobs:
|
||||||
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.17.0' }} --zip
|
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.17.0' }} --zip
|
||||||
|
|
||||||
- name: Upload Windows x86 artifact
|
- name: Upload Windows x86 artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: windows-x86
|
name: windows-x86
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -68,7 +68,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -82,7 +82,7 @@ jobs:
|
||||||
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.17.0' }} --zip
|
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.17.0' }} --zip
|
||||||
|
|
||||||
- name: Upload Windows ARM64 artifact
|
- name: Upload Windows ARM64 artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: windows-arm64
|
name: windows-arm64
|
||||||
path: build-dist\arm64\dist\*.zip
|
path: build-dist\arm64\dist\*.zip
|
||||||
|
|
@ -92,7 +92,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -103,7 +103,7 @@ jobs:
|
||||||
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk
|
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk
|
||||||
|
|
||||||
- name: Upload Ubuntu artifact
|
- name: Upload Ubuntu artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ubuntu
|
name: ubuntu
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -113,7 +113,7 @@ jobs:
|
||||||
runs-on: macos-14
|
runs-on: macos-14
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -124,7 +124,7 @@ jobs:
|
||||||
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk
|
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk
|
||||||
|
|
||||||
- name: Upload macOS x64 artifact
|
- name: Upload macOS x64 artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: macos-x64
|
name: macos-x64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -134,7 +134,7 @@ jobs:
|
||||||
runs-on: macos-14
|
runs-on: macos-14
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -145,7 +145,7 @@ jobs:
|
||||||
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=arm64
|
run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=arm64
|
||||||
|
|
||||||
- name: Upload macOS ARM64 artifact
|
- name: Upload macOS ARM64 artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: macos-arm64
|
name: macos-arm64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -157,7 +157,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -165,7 +165,7 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
path: packages
|
path: packages
|
||||||
|
|
||||||
|
|
@ -198,7 +198,7 @@ jobs:
|
||||||
nuget pack out\Microsoft.Z3.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
nuget pack out\Microsoft.Z3.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
||||||
|
|
||||||
- name: Upload NuGet package
|
- name: Upload NuGet package
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: nuget-x64
|
name: nuget-x64
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -212,7 +212,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -220,7 +220,7 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download x86 artifact
|
- name: Download x86 artifact
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: windows-x86
|
name: windows-x86
|
||||||
path: packages
|
path: packages
|
||||||
|
|
@ -247,7 +247,7 @@ jobs:
|
||||||
nuget pack out\Microsoft.Z3.x86.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
nuget pack out\Microsoft.Z3.x86.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
||||||
|
|
||||||
- name: Upload NuGet package
|
- name: Upload NuGet package
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: nuget-x86
|
name: nuget-x86
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
2
.github/workflows/ocaml.yaml
vendored
2
.github/workflows/ocaml.yaml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
# Cache ccache (shared across runs)
|
# Cache ccache (shared across runs)
|
||||||
- name: Cache ccache
|
- name: Cache ccache
|
||||||
|
|
|
||||||
2
.github/workflows/pyodide.yml
vendored
2
.github/workflows/pyodide.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup packages
|
- name: Setup packages
|
||||||
run: sudo apt-get update && sudo apt-get install -y python3-dev python3-pip python3-venv
|
run: sudo apt-get update && sudo apt-get install -y python3-dev python3-pip python3-venv
|
||||||
|
|
|
||||||
1030
.github/workflows/qf-s-benchmark.lock.yml
generated
vendored
Normal file
1030
.github/workflows/qf-s-benchmark.lock.yml
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
38
.github/workflows/qf-s-benchmark.md
vendored
Normal file
38
.github/workflows/qf-s-benchmark.md
vendored
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
description: Run Z3 string solver benchmarks (seq vs nseq) on QF_S test suite from the c3 branch and post results as a GitHub discussion
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule: weekly
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
|
network: defaults
|
||||||
|
|
||||||
|
tools:
|
||||||
|
bash: true
|
||||||
|
github:
|
||||||
|
toolsets: [default]
|
||||||
|
|
||||||
|
safe-outputs:
|
||||||
|
create-discussion:
|
||||||
|
title-prefix: "[ZIPT Benchmark] "
|
||||||
|
category: "Agentic Workflows"
|
||||||
|
close-older-discussions: true
|
||||||
|
missing-tool:
|
||||||
|
create-issue: true
|
||||||
|
|
||||||
|
timeout-minutes: 90
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout c3 branch
|
||||||
|
uses: actions/checkout@v5
|
||||||
|
with:
|
||||||
|
ref: c3
|
||||||
|
fetch-depth: 1
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- Edit the file linked below to modify the agent without recompilation. Feel free to move the entire markdown body to that file. -->
|
||||||
|
@./agentics/qf-s-benchmark.md
|
||||||
10
.github/workflows/release-notes-updater.lock.yml
generated
vendored
10
.github/workflows/release-notes-updater.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -247,7 +247,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -799,7 +799,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -890,7 +890,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1001,7 +1001,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
|
||||||
100
.github/workflows/release.yml
vendored
100
.github/workflows/release.yml
vendored
|
|
@ -36,7 +36,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -53,7 +53,7 @@ jobs:
|
||||||
run: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
run: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -65,7 +65,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -79,7 +79,7 @@ jobs:
|
||||||
run: git clone https://github.com/z3prover/z3test z3test
|
run: git clone https://github.com/z3prover/z3test z3test
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -96,10 +96,10 @@ jobs:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS x64 Build
|
- name: Download macOS x64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
@ -144,10 +144,10 @@ jobs:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download macOS ARM64 Build
|
- name: Download macOS ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
@ -191,7 +191,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -208,7 +208,7 @@ jobs:
|
||||||
run: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
run: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: UbuntuBuild
|
name: UbuntuBuild
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -220,7 +220,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -243,7 +243,7 @@ jobs:
|
||||||
python scripts/mk_unix_dist.py --nodotnet --arch=arm64
|
python scripts/mk_unix_dist.py --nodotnet --arch=arm64
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: UbuntuArm64
|
name: UbuntuArm64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -255,7 +255,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -298,7 +298,7 @@ jobs:
|
||||||
run: zip -r z3doc.zip doc/api
|
run: zip -r z3doc.zip doc/api
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: UbuntuDoc
|
name: UbuntuDoc
|
||||||
path: z3doc.zip
|
path: z3doc.zip
|
||||||
|
|
@ -311,7 +311,7 @@ jobs:
|
||||||
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python environment
|
- name: Setup Python environment
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -328,7 +328,7 @@ jobs:
|
||||||
run: pip install ./src/api/python/wheelhouse/*.whl && python - <src/api/python/z3test.py z3 && python - <src/api/python/z3test.py z3num
|
run: pip install ./src/api/python/wheelhouse/*.whl && python - <src/api/python/z3test.py z3 && python - <src/api/python/z3test.py z3num
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildAMD64
|
name: ManyLinuxPythonBuildAMD64
|
||||||
path: src/api/python/wheelhouse/*.whl
|
path: src/api/python/wheelhouse/*.whl
|
||||||
|
|
@ -341,7 +341,7 @@ jobs:
|
||||||
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
container: quay.io/pypa/manylinux_2_28_x86_64:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download ARM toolchain
|
- name: Download ARM toolchain
|
||||||
run: curl -L -o /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-linux-gnu.tar.xz'
|
run: curl -L -o /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-linux-gnu.tar.xz'
|
||||||
|
|
@ -368,7 +368,7 @@ jobs:
|
||||||
run: cd src/api/python && CC=aarch64-none-linux-gnu-gcc CXX=aarch64-none-linux-gnu-g++ AR=aarch64-none-linux-gnu-ar LD=aarch64-none-linux-gnu-ld Z3_CROSS_COMPILING=aarch64 python -m build && AUDITWHEEL_PLAT= auditwheel repair --best-plat dist/*.whl && cd ../../..
|
run: cd src/api/python && CC=aarch64-none-linux-gnu-gcc CXX=aarch64-none-linux-gnu-g++ AR=aarch64-none-linux-gnu-ar LD=aarch64-none-linux-gnu-ld Z3_CROSS_COMPILING=aarch64 python -m build && AUDITWHEEL_PLAT= auditwheel repair --best-plat dist/*.whl && cd ../../..
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildArm64
|
name: ManyLinuxPythonBuildArm64
|
||||||
path: src/api/python/wheelhouse/*.whl
|
path: src/api/python/wheelhouse/*.whl
|
||||||
|
|
@ -380,7 +380,7 @@ jobs:
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -394,7 +394,7 @@ jobs:
|
||||||
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x64
|
name: WindowsBuild-x64
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -406,7 +406,7 @@ jobs:
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -420,7 +420,7 @@ jobs:
|
||||||
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --zip
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: dist/*.zip
|
path: dist/*.zip
|
||||||
|
|
@ -432,7 +432,7 @@ jobs:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 90
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -446,7 +446,7 @@ jobs:
|
||||||
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ env.RELEASE_VERSION }} --zip
|
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ env.RELEASE_VERSION }} --zip
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-arm64
|
name: WindowsBuild-arm64
|
||||||
path: dist/arm64/*.zip
|
path: dist/arm64/*.zip
|
||||||
|
|
@ -462,7 +462,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -470,37 +470,37 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download Win64 Build
|
- name: Download Win64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x64
|
name: WindowsBuild-x64
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download Win ARM64 Build
|
- name: Download Win ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-arm64
|
name: WindowsBuild-arm64
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download Ubuntu Build
|
- name: Download Ubuntu Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: UbuntuBuild
|
name: UbuntuBuild
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download Ubuntu ARM64 Build
|
- name: Download Ubuntu ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: UbuntuArm64
|
name: UbuntuArm64
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download macOS Build
|
- name: Download macOS Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
- name: Download macOS Arm64 Build
|
- name: Download macOS Arm64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: package
|
path: package
|
||||||
|
|
@ -523,7 +523,7 @@ jobs:
|
||||||
nuget pack out\Microsoft.Z3.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
nuget pack out\Microsoft.Z3.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: NuGet
|
name: NuGet
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -537,7 +537,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -545,7 +545,7 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: package
|
path: package
|
||||||
|
|
@ -568,7 +568,7 @@ jobs:
|
||||||
nuget pack out\Microsoft.Z3.x86.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
nuget pack out\Microsoft.Z3.x86.sym.nuspec -OutputDirectory . -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -BasePath out
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: NuGet32
|
name: NuGet32
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -582,7 +582,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
|
|
@ -590,43 +590,43 @@ jobs:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Download macOS x64 Build
|
- name: Download macOS x64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: macOsBuild
|
name: macOsBuild
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download macOS Arm64 Build
|
- name: Download macOS Arm64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: MacArm64
|
name: MacArm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download Win64 Build
|
- name: Download Win64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x64
|
name: WindowsBuild-x64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download Win32 Build
|
- name: Download Win32 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download Win ARM64 Build
|
- name: Download Win ARM64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-arm64
|
name: WindowsBuild-arm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download ManyLinux AMD64 Build
|
- name: Download ManyLinux AMD64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildAMD64
|
name: ManyLinuxPythonBuildAMD64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
- name: Download ManyLinux Arm64 Build
|
- name: Download ManyLinux Arm64 Build
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: ManyLinuxPythonBuildArm64
|
name: ManyLinuxPythonBuildArm64
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
@ -658,7 +658,7 @@ jobs:
|
||||||
cp artifacts/*.whl src/api/python/dist/.
|
cp artifacts/*.whl src/api/python/dist/.
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v7.0.0
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: PythonPackage
|
name: PythonPackage
|
||||||
path: src/api/python/dist/*
|
path: src/api/python/dist/*
|
||||||
|
|
@ -689,10 +689,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
path: tmp
|
path: tmp
|
||||||
|
|
||||||
|
|
@ -745,16 +745,16 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download NuGet packages
|
- name: Download NuGet packages
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: NuGet
|
name: NuGet
|
||||||
path: packages
|
path: packages
|
||||||
|
|
||||||
- name: Download NuGet32 packages
|
- name: Download NuGet32 packages
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: NuGet32
|
name: NuGet32
|
||||||
path: packages
|
path: packages
|
||||||
|
|
@ -781,7 +781,7 @@ jobs:
|
||||||
contents: read
|
contents: read
|
||||||
steps:
|
steps:
|
||||||
- name: Download Python packages
|
- name: Download Python packages
|
||||||
uses: actions/download-artifact@v8.0.0
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: PythonPackage
|
name: PythonPackage
|
||||||
path: dist
|
path: dist
|
||||||
|
|
|
||||||
12
.github/workflows/soundness-bug-detector.lock.yml
generated
vendored
12
.github/workflows/soundness-bug-detector.lock.yml
generated
vendored
|
|
@ -56,7 +56,7 @@ jobs:
|
||||||
title: ${{ steps.sanitized.outputs.title }}
|
title: ${{ steps.sanitized.outputs.title }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -263,7 +263,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -866,7 +866,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -957,7 +957,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1069,7 +1069,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1106,7 +1106,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
10
.github/workflows/specbot.lock.yml
generated
vendored
10
.github/workflows/specbot.lock.yml
generated
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -257,7 +257,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -815,7 +815,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -908,7 +908,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1019,7 +1019,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
|
||||||
12
.github/workflows/tactic-to-simplifier.lock.yml
generated
vendored
12
.github/workflows/tactic-to-simplifier.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -253,7 +253,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -843,7 +843,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -932,7 +932,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1042,7 +1042,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1079,7 +1079,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
2
.github/workflows/wasm-release.yml
vendored
2
.github/workflows/wasm-release.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup node
|
- name: Setup node
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
|
|
|
||||||
2
.github/workflows/wasm.yml
vendored
2
.github/workflows/wasm.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6.0.2
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup node
|
- name: Setup node
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
|
|
|
||||||
2
.github/workflows/wip.yml
vendored
2
.github/workflows/wip.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6.0.2
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
||||||
|
|
|
||||||
12
.github/workflows/workflow-suggestion-agent.lock.yml
generated
vendored
12
.github/workflows/workflow-suggestion-agent.lock.yml
generated
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -254,7 +254,7 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
|
|
@ -831,7 +831,7 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -922,7 +922,7 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
|
|
@ -1033,7 +1033,7 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
|
|
@ -1070,7 +1070,7 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
|
|
|
||||||
44
.github/workflows/zipt-code-reviewer.lock.yml
generated
vendored
44
.github/workflows/zipt-code-reviewer.lock.yml
generated
vendored
|
|
@ -48,7 +48,7 @@ jobs:
|
||||||
comment_repo: ""
|
comment_repo: ""
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@c3acb23c6772826a8df80b2b68ae13d268ff43e1 # v0.45.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Checkout .github and .agents folders
|
- name: Checkout .github and .agents folders
|
||||||
|
|
@ -219,7 +219,7 @@ jobs:
|
||||||
run: bash /opt/gh-aw/actions/print_prompt_summary.sh
|
run: bash /opt/gh-aw/actions/print_prompt_summary.sh
|
||||||
- name: Upload prompt artifact
|
- name: Upload prompt artifact
|
||||||
if: success()
|
if: success()
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
with:
|
with:
|
||||||
name: prompt
|
name: prompt
|
||||||
path: /tmp/gh-aw/aw-prompts/prompt.txt
|
path: /tmp/gh-aw/aw-prompts/prompt.txt
|
||||||
|
|
@ -250,13 +250,13 @@ jobs:
|
||||||
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@c3acb23c6772826a8df80b2b68ae13d268ff43e1 # v0.45.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Create gh-aw temp directory
|
- name: Create gh-aw temp directory
|
||||||
run: bash /opt/gh-aw/actions/create_gh_aw_tmp_dir.sh
|
run: bash /opt/gh-aw/actions/create_gh_aw_tmp_dir.sh
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
|
|
@ -264,7 +264,7 @@ jobs:
|
||||||
- name: Create cache-memory directory
|
- name: Create cache-memory directory
|
||||||
run: bash /opt/gh-aw/actions/create_cache_memory_dir.sh
|
run: bash /opt/gh-aw/actions/create_cache_memory_dir.sh
|
||||||
- name: Restore cache-memory file share data
|
- name: Restore cache-memory file share data
|
||||||
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
||||||
with:
|
with:
|
||||||
key: memory-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ github.run_id }}
|
key: memory-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ github.run_id }}
|
||||||
path: /tmp/gh-aw/cache-memory
|
path: /tmp/gh-aw/cache-memory
|
||||||
|
|
@ -651,7 +651,7 @@ jobs:
|
||||||
const { generateWorkflowOverview } = require('/opt/gh-aw/actions/generate_workflow_overview.cjs');
|
const { generateWorkflowOverview } = require('/opt/gh-aw/actions/generate_workflow_overview.cjs');
|
||||||
await generateWorkflowOverview(core);
|
await generateWorkflowOverview(core);
|
||||||
- name: Download prompt artifact
|
- name: Download prompt artifact
|
||||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
||||||
with:
|
with:
|
||||||
name: prompt
|
name: prompt
|
||||||
path: /tmp/gh-aw/aw-prompts
|
path: /tmp/gh-aw/aw-prompts
|
||||||
|
|
@ -752,7 +752,7 @@ jobs:
|
||||||
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Upload Safe Outputs
|
- name: Upload Safe Outputs
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
with:
|
with:
|
||||||
name: safe-output
|
name: safe-output
|
||||||
path: ${{ env.GH_AW_SAFE_OUTPUTS }}
|
path: ${{ env.GH_AW_SAFE_OUTPUTS }}
|
||||||
|
|
@ -774,13 +774,13 @@ jobs:
|
||||||
await main();
|
await main();
|
||||||
- name: Upload sanitized agent output
|
- name: Upload sanitized agent output
|
||||||
if: always() && env.GH_AW_AGENT_OUTPUT
|
if: always() && env.GH_AW_AGENT_OUTPUT
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
with:
|
with:
|
||||||
name: agent-output
|
name: agent-output
|
||||||
path: ${{ env.GH_AW_AGENT_OUTPUT }}
|
path: ${{ env.GH_AW_AGENT_OUTPUT }}
|
||||||
if-no-files-found: warn
|
if-no-files-found: warn
|
||||||
- name: Upload engine output files
|
- name: Upload engine output files
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
with:
|
with:
|
||||||
name: agent_outputs
|
name: agent_outputs
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -823,7 +823,7 @@ jobs:
|
||||||
echo 'AWF binary not installed, skipping firewall log summary'
|
echo 'AWF binary not installed, skipping firewall log summary'
|
||||||
fi
|
fi
|
||||||
- name: Upload cache-memory data as artifact
|
- name: Upload cache-memory data as artifact
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: cache-memory
|
name: cache-memory
|
||||||
|
|
@ -831,7 +831,7 @@ jobs:
|
||||||
- name: Upload agent artifacts
|
- name: Upload agent artifacts
|
||||||
if: always()
|
if: always()
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
with:
|
with:
|
||||||
name: agent-artifacts
|
name: agent-artifacts
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -861,12 +861,12 @@ jobs:
|
||||||
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
total_count: ${{ steps.missing_tool.outputs.total_count }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@c3acb23c6772826a8df80b2b68ae13d268ff43e1 # v0.45.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
||||||
with:
|
with:
|
||||||
name: agent-output
|
name: agent-output
|
||||||
path: /tmp/gh-aw/safeoutputs/
|
path: /tmp/gh-aw/safeoutputs/
|
||||||
|
|
@ -952,18 +952,18 @@ jobs:
|
||||||
success: ${{ steps.parse_results.outputs.success }}
|
success: ${{ steps.parse_results.outputs.success }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@c3acb23c6772826a8df80b2b68ae13d268ff43e1 # v0.45.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent artifacts
|
- name: Download agent artifacts
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
||||||
with:
|
with:
|
||||||
name: agent-artifacts
|
name: agent-artifacts
|
||||||
path: /tmp/gh-aw/threat-detection/
|
path: /tmp/gh-aw/threat-detection/
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
||||||
with:
|
with:
|
||||||
name: agent-output
|
name: agent-output
|
||||||
path: /tmp/gh-aw/threat-detection/
|
path: /tmp/gh-aw/threat-detection/
|
||||||
|
|
@ -1035,7 +1035,7 @@ jobs:
|
||||||
await main();
|
await main();
|
||||||
- name: Upload threat detection log
|
- name: Upload threat detection log
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
||||||
with:
|
with:
|
||||||
name: threat-detection.log
|
name: threat-detection.log
|
||||||
path: /tmp/gh-aw/threat-detection/detection.log
|
path: /tmp/gh-aw/threat-detection/detection.log
|
||||||
|
|
@ -1062,12 +1062,12 @@ jobs:
|
||||||
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@c3acb23c6772826a8df80b2b68ae13d268ff43e1 # v0.45.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download agent output artifact
|
- name: Download agent output artifact
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
||||||
with:
|
with:
|
||||||
name: agent-output
|
name: agent-output
|
||||||
path: /tmp/gh-aw/safeoutputs/
|
path: /tmp/gh-aw/safeoutputs/
|
||||||
|
|
@ -1099,17 +1099,17 @@ jobs:
|
||||||
permissions: {}
|
permissions: {}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Scripts
|
- name: Setup Scripts
|
||||||
uses: github/gh-aw/actions/setup@c3acb23c6772826a8df80b2b68ae13d268ff43e1 # v0.45.6
|
uses: github/gh-aw/actions/setup@902845080df391b1f71845fcd7c303dfc0ac90b3 # v0.57.0
|
||||||
with:
|
with:
|
||||||
destination: /opt/gh-aw/actions
|
destination: /opt/gh-aw/actions
|
||||||
- name: Download cache-memory artifact (default)
|
- name: Download cache-memory artifact (default)
|
||||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
name: cache-memory
|
name: cache-memory
|
||||||
path: /tmp/gh-aw/cache-memory
|
path: /tmp/gh-aw/cache-memory
|
||||||
- name: Save cache-memory to cache (default)
|
- name: Save cache-memory to cache (default)
|
||||||
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
||||||
with:
|
with:
|
||||||
key: memory-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ github.run_id }}
|
key: memory-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ github.run_id }}
|
||||||
path: /tmp/gh-aw/cache-memory
|
path: /tmp/gh-aw/cache-memory
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,25 @@ Version 4.17.0
|
||||||
Thanks to Nuno Lopes, https://github.com/Z3Prover/z3/pull/8583
|
Thanks to Nuno Lopes, https://github.com/Z3Prover/z3/pull/8583
|
||||||
- Fix spurious sort error with nested quantifiers in model finder. `Fixes #8563`
|
- Fix spurious sort error with nested quantifiers in model finder. `Fixes #8563`
|
||||||
- NLSAT optimizations including improvements to handle_nullified_poly and levelwise algorithm. Thanks to Lev Nachmanson.
|
- NLSAT optimizations including improvements to handle_nullified_poly and levelwise algorithm. Thanks to Lev Nachmanson.
|
||||||
|
- Add ASan/UBSan memory safety CI workflow for continuous runtime safety checking. Thanks to Angelica Moreira.
|
||||||
|
https://github.com/Z3Prover/z3/pull/8856
|
||||||
|
- Add missing API bindings across multiple languages:
|
||||||
|
- Python: BvNand, BvNor, BvXnor operations, Optimize.translate()
|
||||||
|
- Go: MkAsArray, MkRecFuncDecl, AddRecDef, Model.Translate, MkBVRotateLeft, MkBVRotateRight, MkRepeat, and 8 BV overflow/underflow check functions
|
||||||
|
- TypeScript: Array.fromFunc, Model.translate
|
||||||
|
- OCaml: Model.translate, mk_re_allchar (thanks to Filipe Marques, https://github.com/Z3Prover/z3/pull/8785)
|
||||||
|
- Java: as-array method (thanks to Ruijie Fang, https://github.com/Z3Prover/z3/pull/8762)
|
||||||
|
- Fix #7507: simplify (>= product_of_consecutive_ints 0) to true
|
||||||
|
- Fix #7951: add cancellation checks to polynomial gcd_prs and HNF computation
|
||||||
|
- Fix #7677: treat FC_CONTINUE from check_nla as FEASIBLE in maximize
|
||||||
|
- Fix assertion violation in q_mbi diagnostic output
|
||||||
|
- Fix memory leaks in model_based_opt def ref-counting
|
||||||
|
- Fix NoSuchFieldError in JNI for BoolPtr: use Z field descriptor and SetBooleanField
|
||||||
|
- Fix TypeScript Array.fromFunc to use f.ptr instead of f.ast for Z3_func_decl type
|
||||||
|
- Fix intblast ubv_to_int bug: add bv2int axioms for compound expressions
|
||||||
|
- Fix static analysis findings: uninitialized variables, bitwise shift undefined behavior, and null pointer dereferences
|
||||||
|
- Convert bv1-blast and blast-term-ite tactics to also expose as simplifiers for more flexible integration
|
||||||
|
- Change default of param lws_subs_witness_disc to true for improved NLSAT performance. Thanks to Lev Nachmanson.
|
||||||
|
|
||||||
Version 4.16.0
|
Version 4.16.0
|
||||||
==============
|
==============
|
||||||
|
|
|
||||||
|
|
@ -1919,11 +1919,8 @@ class JavaDLLComponent(Component):
|
||||||
if IS_WINDOWS: # On Windows, CL creates a .lib file to link against.
|
if IS_WINDOWS: # On Windows, CL creates a .lib file to link against.
|
||||||
out.write('\t$(SLINK) $(SLINK_OUT_FLAG)libz3java$(SO_EXT) $(SLINK_FLAGS) %s$(OBJ_EXT) libz3$(LIB_EXT)\n' %
|
out.write('\t$(SLINK) $(SLINK_OUT_FLAG)libz3java$(SO_EXT) $(SLINK_FLAGS) %s$(OBJ_EXT) libz3$(LIB_EXT)\n' %
|
||||||
os.path.join('api', 'java', 'Native'))
|
os.path.join('api', 'java', 'Native'))
|
||||||
elif IS_OSX and IS_ARCH_ARM64:
|
|
||||||
out.write('\t$(SLINK) $(SLINK_OUT_FLAG)libz3java$(SO_EXT) $(SLINK_FLAGS) -arch arm64 %s$(OBJ_EXT) libz3$(SO_EXT)\n' %
|
|
||||||
os.path.join('api', 'java', 'Native'))
|
|
||||||
else:
|
else:
|
||||||
out.write('\t$(SLINK) $(SLINK_OUT_FLAG)libz3java$(SO_EXT) $(SLINK_FLAGS) %s$(OBJ_EXT) libz3$(SO_EXT)\n' %
|
out.write('\t$(SLINK) $(SLINK_OUT_FLAG)libz3java$(SO_EXT) $(SLINK_FLAGS) %s$(OBJ_EXT) libz3$(SO_EXT) $(SLINK_EXTRA_FLAGS)\n' %
|
||||||
os.path.join('api', 'java', 'Native'))
|
os.path.join('api', 'java', 'Native'))
|
||||||
out.write('%s.jar: libz3java$(SO_EXT) ' % self.package_name)
|
out.write('%s.jar: libz3java$(SO_EXT) ' % self.package_name)
|
||||||
deps = ''
|
deps = ''
|
||||||
|
|
|
||||||
278
scripts/tests/test_jni_arch_flags.py
Normal file
278
scripts/tests/test_jni_arch_flags.py
Normal file
|
|
@ -0,0 +1,278 @@
|
||||||
|
############################################
|
||||||
|
# Copyright (c) 2024 Microsoft Corporation
|
||||||
|
#
|
||||||
|
# Unit tests for JNI architecture flags in Makefile generation.
|
||||||
|
#
|
||||||
|
# Regression tests for:
|
||||||
|
# "JNI bindings use wrong architecture in macOS cross-compilation (arm64 to x64)"
|
||||||
|
#
|
||||||
|
# The fix ensures that libz3java.dylib (and the JNI link step) uses
|
||||||
|
# $(SLINK_EXTRA_FLAGS) instead of a hardcoded -arch arm64.
|
||||||
|
# $(SLINK_EXTRA_FLAGS) is populated correctly in mk_config() for:
|
||||||
|
# - Native ARM64 builds: SLINK_EXTRA_FLAGS contains -arch arm64
|
||||||
|
# - Cross-compile to x86_64: SLINK_EXTRA_FLAGS contains -arch x86_64
|
||||||
|
# - Other platforms: SLINK_EXTRA_FLAGS has no -arch flag
|
||||||
|
############################################
|
||||||
|
import io
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import unittest
|
||||||
|
from unittest.mock import patch, MagicMock
|
||||||
|
|
||||||
|
# Add the scripts directory to the path so we can import mk_util
|
||||||
|
_SCRIPTS_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
|
if _SCRIPTS_DIR not in sys.path:
|
||||||
|
sys.path.insert(0, _SCRIPTS_DIR)
|
||||||
|
|
||||||
|
import mk_util
|
||||||
|
|
||||||
|
|
||||||
|
class TestJNIArchitectureFlagsInMakefile(unittest.TestCase):
|
||||||
|
"""
|
||||||
|
Tests that JavaDLLComponent.mk_makefile() generates a JNI link command
|
||||||
|
that uses $(SLINK_EXTRA_FLAGS) rather than hardcoding -arch arm64.
|
||||||
|
|
||||||
|
$(SLINK_EXTRA_FLAGS) is set by mk_config() to contain the correct -arch
|
||||||
|
flag for the TARGET architecture (not the host), so using it ensures
|
||||||
|
cross-compilation works correctly.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
"""Save mk_util global state before each test."""
|
||||||
|
self._saved_components = list(mk_util._Components)
|
||||||
|
self._saved_names = set(mk_util._ComponentNames)
|
||||||
|
self._saved_name2component = dict(mk_util._Name2Component)
|
||||||
|
self._saved_id = mk_util._Id
|
||||||
|
self._saved_javac = mk_util.JAVAC
|
||||||
|
self._saved_jar = mk_util.JAR
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
"""Restore mk_util global state after each test."""
|
||||||
|
mk_util._Components[:] = self._saved_components
|
||||||
|
mk_util._ComponentNames.clear()
|
||||||
|
mk_util._ComponentNames.update(self._saved_names)
|
||||||
|
mk_util._Name2Component.clear()
|
||||||
|
mk_util._Name2Component.update(self._saved_name2component)
|
||||||
|
mk_util._Id = self._saved_id
|
||||||
|
mk_util.JAVAC = self._saved_javac
|
||||||
|
mk_util.JAR = self._saved_jar
|
||||||
|
|
||||||
|
def _make_java_dll_component(self):
|
||||||
|
"""
|
||||||
|
Create a JavaDLLComponent instance bypassing the registry check so
|
||||||
|
that tests remain independent of each other.
|
||||||
|
"""
|
||||||
|
# Register a stub 'api' component that provides to_src_dir
|
||||||
|
api_stub = MagicMock()
|
||||||
|
api_stub.to_src_dir = '../src/api'
|
||||||
|
mk_util._Name2Component['api'] = api_stub
|
||||||
|
mk_util._ComponentNames.add('api')
|
||||||
|
|
||||||
|
# Build the component without going through the full Component.__init__
|
||||||
|
# registration path (which enforces uniqueness globally).
|
||||||
|
comp = mk_util.JavaDLLComponent.__new__(mk_util.JavaDLLComponent)
|
||||||
|
comp.name = 'java'
|
||||||
|
comp.dll_name = 'libz3java'
|
||||||
|
comp.package_name = 'com.microsoft.z3'
|
||||||
|
comp.manifest_file = None
|
||||||
|
comp.to_src_dir = '../src/api/java'
|
||||||
|
comp.src_dir = 'src/api/java'
|
||||||
|
comp.deps = []
|
||||||
|
comp.install = True
|
||||||
|
return comp
|
||||||
|
|
||||||
|
def _generate_makefile(self, comp, *, is_windows, is_osx, is_arch_arm64):
|
||||||
|
"""
|
||||||
|
Call mk_makefile() with the given platform flags and return the
|
||||||
|
generated Makefile text.
|
||||||
|
"""
|
||||||
|
buf = io.StringIO()
|
||||||
|
with patch.object(mk_util, 'JAVA_ENABLED', True), \
|
||||||
|
patch.object(mk_util, 'IS_WINDOWS', is_windows), \
|
||||||
|
patch.object(mk_util, 'IS_OSX', is_osx), \
|
||||||
|
patch.object(mk_util, 'IS_ARCH_ARM64', is_arch_arm64), \
|
||||||
|
patch.object(mk_util, 'JNI_HOME', '/path/to/jni'), \
|
||||||
|
patch.object(mk_util, 'JAVAC', 'javac'), \
|
||||||
|
patch.object(mk_util, 'JAR', 'jar'), \
|
||||||
|
patch.object(mk_util, 'BUILD_DIR', '/tmp/test_build'), \
|
||||||
|
patch('mk_util.mk_dir'), \
|
||||||
|
patch('mk_util.get_java_files', return_value=[]):
|
||||||
|
comp.mk_makefile(buf)
|
||||||
|
return buf.getvalue()
|
||||||
|
|
||||||
|
def _find_jni_link_lines(self, makefile_text):
|
||||||
|
"""Return lines that contain the JNI library link command."""
|
||||||
|
return [
|
||||||
|
line for line in makefile_text.splitlines()
|
||||||
|
if 'libz3java$(SO_EXT)' in line and 'SLINK' in line
|
||||||
|
]
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
# Tests for non-Windows platforms (where SLINK_EXTRA_FLAGS matters)
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
|
||||||
|
def test_macos_arm64_native_uses_slink_extra_flags(self):
|
||||||
|
"""
|
||||||
|
On native ARM64 macOS builds, the JNI link command must use
|
||||||
|
$(SLINK_EXTRA_FLAGS) so that the -arch arm64 flag added to
|
||||||
|
SLINK_EXTRA_FLAGS by mk_config() is respected.
|
||||||
|
"""
|
||||||
|
comp = self._make_java_dll_component()
|
||||||
|
text = self._generate_makefile(
|
||||||
|
comp, is_windows=False, is_osx=True, is_arch_arm64=True
|
||||||
|
)
|
||||||
|
link_lines = self._find_jni_link_lines(text)
|
||||||
|
self.assertTrue(
|
||||||
|
link_lines,
|
||||||
|
"Expected at least one JNI link line in the generated Makefile",
|
||||||
|
)
|
||||||
|
for line in link_lines:
|
||||||
|
self.assertIn(
|
||||||
|
'$(SLINK_EXTRA_FLAGS)', line,
|
||||||
|
"JNI link command must use $(SLINK_EXTRA_FLAGS) so the "
|
||||||
|
"correct target architecture flag is applied",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_macos_arm64_native_no_hardcoded_arch_arm64(self):
|
||||||
|
"""
|
||||||
|
The JNI link command must NOT hardcode -arch arm64.
|
||||||
|
Hardcoding -arch arm64 breaks cross-compilation from an ARM64 host
|
||||||
|
to an x86_64 target, which is the bug this fix addresses.
|
||||||
|
"""
|
||||||
|
comp = self._make_java_dll_component()
|
||||||
|
text = self._generate_makefile(
|
||||||
|
comp, is_windows=False, is_osx=True, is_arch_arm64=True
|
||||||
|
)
|
||||||
|
link_lines = self._find_jni_link_lines(text)
|
||||||
|
self.assertTrue(link_lines, "Expected at least one JNI link line")
|
||||||
|
for line in link_lines:
|
||||||
|
self.assertNotIn(
|
||||||
|
'-arch arm64', line,
|
||||||
|
"JNI link command must not hardcode '-arch arm64'. "
|
||||||
|
"Use $(SLINK_EXTRA_FLAGS) instead so that cross-compilation "
|
||||||
|
"from ARM64 host to x86_64 target works correctly.",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_macos_x86_64_uses_slink_extra_flags(self):
|
||||||
|
"""
|
||||||
|
When building for x86_64 on macOS (e.g. cross-compiling from ARM64
|
||||||
|
host), the JNI link command must still use $(SLINK_EXTRA_FLAGS) so
|
||||||
|
that the -arch x86_64 flag set by mk_config() is applied.
|
||||||
|
"""
|
||||||
|
comp = self._make_java_dll_component()
|
||||||
|
text = self._generate_makefile(
|
||||||
|
comp, is_windows=False, is_osx=True, is_arch_arm64=False
|
||||||
|
)
|
||||||
|
link_lines = self._find_jni_link_lines(text)
|
||||||
|
self.assertTrue(link_lines, "Expected at least one JNI link line")
|
||||||
|
for line in link_lines:
|
||||||
|
self.assertIn(
|
||||||
|
'$(SLINK_EXTRA_FLAGS)', line,
|
||||||
|
"JNI link command must use $(SLINK_EXTRA_FLAGS)",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_linux_uses_slink_extra_flags(self):
|
||||||
|
"""On Linux, the JNI link command must use $(SLINK_EXTRA_FLAGS)."""
|
||||||
|
comp = self._make_java_dll_component()
|
||||||
|
text = self._generate_makefile(
|
||||||
|
comp, is_windows=False, is_osx=False, is_arch_arm64=False
|
||||||
|
)
|
||||||
|
link_lines = self._find_jni_link_lines(text)
|
||||||
|
self.assertTrue(link_lines, "Expected at least one JNI link line")
|
||||||
|
for line in link_lines:
|
||||||
|
self.assertIn(
|
||||||
|
'$(SLINK_EXTRA_FLAGS)', line,
|
||||||
|
"JNI link command must use $(SLINK_EXTRA_FLAGS) on Linux",
|
||||||
|
)
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
# Tests for Windows (different codepath - links against LIB_EXT)
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
|
||||||
|
def test_windows_links_against_lib_ext(self):
|
||||||
|
"""
|
||||||
|
On Windows the JNI library is linked against the import library
|
||||||
|
(libz3$(LIB_EXT)), not the shared library, and SLINK_EXTRA_FLAGS is
|
||||||
|
handled differently by the VS build system.
|
||||||
|
"""
|
||||||
|
comp = self._make_java_dll_component()
|
||||||
|
text = self._generate_makefile(
|
||||||
|
comp, is_windows=True, is_osx=False, is_arch_arm64=False
|
||||||
|
)
|
||||||
|
link_lines = self._find_jni_link_lines(text)
|
||||||
|
self.assertTrue(link_lines, "Expected at least one JNI link line")
|
||||||
|
for line in link_lines:
|
||||||
|
self.assertIn(
|
||||||
|
'$(LIB_EXT)', line,
|
||||||
|
"Windows JNI link command must link against LIB_EXT "
|
||||||
|
"(the import library)",
|
||||||
|
)
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
# Consistency check: SLINK_EXTRA_FLAGS in mk_config for cross-compile
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
|
||||||
|
def test_slibextraflags_contains_x86_64_when_cross_compiling(self):
|
||||||
|
"""
|
||||||
|
When mk_config() runs on an ARM64 macOS host with IS_ARCH_ARM64=False
|
||||||
|
(i.e. cross-compiling to x86_64), SLIBEXTRAFLAGS must contain
|
||||||
|
'-arch x86_64' so that $(SLINK_EXTRA_FLAGS) carries the right flag.
|
||||||
|
|
||||||
|
This validates the mk_config() logic that feeds into $(SLINK_EXTRA_FLAGS).
|
||||||
|
"""
|
||||||
|
# We verify the condition in mk_config() directly by checking the
|
||||||
|
# relevant code path. The cross-compile path in mk_config() is:
|
||||||
|
#
|
||||||
|
# elif IS_OSX and os.uname()[4] == 'arm64':
|
||||||
|
# SLIBEXTRAFLAGS = '%s -arch x86_64' % SLIBEXTRAFLAGS
|
||||||
|
#
|
||||||
|
# We test this by simulating the condition:
|
||||||
|
import platform
|
||||||
|
if platform.system() != 'Darwin' or platform.machine() != 'arm64':
|
||||||
|
self.skipTest(
|
||||||
|
"Cross-compilation architecture test only runs on ARM64 macOS"
|
||||||
|
)
|
||||||
|
|
||||||
|
# On a real ARM64 macOS machine with IS_ARCH_ARM64=False we should get
|
||||||
|
# -arch x86_64 in SLIBEXTRAFLAGS. Simulate the mk_config() logic:
|
||||||
|
slibextraflags = ''
|
||||||
|
is_arch_arm64 = False
|
||||||
|
is_osx = True
|
||||||
|
host_machine = platform.machine() # 'arm64'
|
||||||
|
|
||||||
|
if is_arch_arm64 and is_osx:
|
||||||
|
slibextraflags = '%s -arch arm64' % slibextraflags
|
||||||
|
elif is_osx and host_machine == 'arm64':
|
||||||
|
slibextraflags = '%s -arch x86_64' % slibextraflags
|
||||||
|
|
||||||
|
self.assertIn(
|
||||||
|
'-arch x86_64', slibextraflags,
|
||||||
|
"When cross-compiling from ARM64 macOS to x86_64, "
|
||||||
|
"SLIBEXTRAFLAGS must contain '-arch x86_64'",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_slibextraflags_contains_arm64_for_native_arm64_build(self):
|
||||||
|
"""
|
||||||
|
When mk_config() runs on a native ARM64 macOS build (IS_ARCH_ARM64=True),
|
||||||
|
SLIBEXTRAFLAGS must contain '-arch arm64'.
|
||||||
|
"""
|
||||||
|
import platform
|
||||||
|
if platform.system() != 'Darwin':
|
||||||
|
self.skipTest("Architecture flag test only relevant on macOS")
|
||||||
|
|
||||||
|
slibextraflags = ''
|
||||||
|
is_arch_arm64 = True
|
||||||
|
is_osx = True
|
||||||
|
|
||||||
|
if is_arch_arm64 and is_osx:
|
||||||
|
slibextraflags = '%s -arch arm64' % slibextraflags
|
||||||
|
|
||||||
|
self.assertIn(
|
||||||
|
'-arch arm64', slibextraflags,
|
||||||
|
"For a native ARM64 macOS build, SLIBEXTRAFLAGS must contain "
|
||||||
|
"'-arch arm64' so that $(SLINK_EXTRA_FLAGS) carries the correct flag",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
||||||
|
|
@ -159,6 +159,21 @@ func (c *Context) MkZeroExt(i uint, expr *Expr) *Expr {
|
||||||
return newExpr(c, C.Z3_mk_zero_ext(c.ptr, C.uint(i), expr.ptr))
|
return newExpr(c, C.Z3_mk_zero_ext(c.ptr, C.uint(i), expr.ptr))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MkBVRotateLeft rotates the bits of t to the left by i positions.
|
||||||
|
func (c *Context) MkBVRotateLeft(i uint, t *Expr) *Expr {
|
||||||
|
return newExpr(c, C.Z3_mk_rotate_left(c.ptr, C.uint(i), t.ptr))
|
||||||
|
}
|
||||||
|
|
||||||
|
// MkBVRotateRight rotates the bits of t to the right by i positions.
|
||||||
|
func (c *Context) MkBVRotateRight(i uint, t *Expr) *Expr {
|
||||||
|
return newExpr(c, C.Z3_mk_rotate_right(c.ptr, C.uint(i), t.ptr))
|
||||||
|
}
|
||||||
|
|
||||||
|
// MkRepeat repeats the given bit-vector t a total of i times.
|
||||||
|
func (c *Context) MkRepeat(i uint, t *Expr) *Expr {
|
||||||
|
return newExpr(c, C.Z3_mk_repeat(c.ptr, C.uint(i), t.ptr))
|
||||||
|
}
|
||||||
|
|
||||||
// MkBVAddNoOverflow creates a predicate that checks that the bit-wise addition
|
// MkBVAddNoOverflow creates a predicate that checks that the bit-wise addition
|
||||||
// of t1 and t2 does not overflow. If isSigned is true, checks for signed overflow.
|
// of t1 and t2 does not overflow. If isSigned is true, checks for signed overflow.
|
||||||
func (c *Context) MkBVAddNoOverflow(t1, t2 *Expr, isSigned bool) *Expr {
|
func (c *Context) MkBVAddNoOverflow(t1, t2 *Expr, isSigned bool) *Expr {
|
||||||
|
|
|
||||||
|
|
@ -1402,6 +1402,7 @@ namespace euf {
|
||||||
// to check it again.
|
// to check it again.
|
||||||
get_check_mark(reg) == NOT_CHECKED &&
|
get_check_mark(reg) == NOT_CHECKED &&
|
||||||
is_ground(m_registers[reg]) &&
|
is_ground(m_registers[reg]) &&
|
||||||
|
instr->m_enode != nullptr &&
|
||||||
get_pat_lbl_hash(reg) == instr->m_enode->get_lbl_hash();
|
get_pat_lbl_hash(reg) == instr->m_enode->get_lbl_hash();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -226,7 +226,6 @@ namespace seq {
|
||||||
return
|
return
|
||||||
e.ls.size() == 1 && e.rs.size() == 1 &&
|
e.ls.size() == 1 && e.rs.size() == 1 &&
|
||||||
seq.str.is_ubv2s(e.ls[0], a) && seq.str.is_ubv2s(e.rs[0], b);
|
seq.str.is_ubv2s(e.ls[0], a) && seq.str.is_ubv2s(e.rs[0], b);
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool eq_solver::reduce_ubv2s1(eqr const& e, eq_ptr& r) {
|
bool eq_solver::reduce_ubv2s1(eqr const& e, eq_ptr& r) {
|
||||||
|
|
|
||||||
|
|
@ -287,27 +287,36 @@ namespace sls {
|
||||||
if (m.is_eq(e)) {
|
if (m.is_eq(e)) {
|
||||||
a = g.find(to_app(e)->get_arg(0));
|
a = g.find(to_app(e)->get_arg(0));
|
||||||
b = g.find(to_app(e)->get_arg(1));
|
b = g.find(to_app(e)->get_arg(1));
|
||||||
}
|
if (lit.sign()) {
|
||||||
if (lit.sign() && m.is_eq(e)) {
|
if (a && b && a->get_root() == b->get_root()) {
|
||||||
if (a->get_root() == b->get_root()) {
|
IF_VERBOSE(0, verbose_stream() << "not disequal " << lit << " " << mk_pp(e, m) << "\n");
|
||||||
IF_VERBOSE(0, verbose_stream() << "not disequal " << lit << " " << mk_pp(e, m) << "\n");
|
ctx.display(verbose_stream());
|
||||||
ctx.display(verbose_stream());
|
UNREACHABLE();
|
||||||
UNREACHABLE();
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (a && b && a->get_root() != b->get_root()) {
|
||||||
|
IF_VERBOSE(0, verbose_stream() << "not equal " << lit << " " << mk_pp(e, m) << "\n");
|
||||||
|
//UNREACHABLE();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!lit.sign() && m.is_eq(e)) {
|
else if (to_app(e)->get_family_id() != basic_family_id) {
|
||||||
if (a->get_root() != b->get_root()) {
|
auto* ne = g.find(e);
|
||||||
IF_VERBOSE(0, verbose_stream() << "not equal " << lit << " " << mk_pp(e, m) << "\n");
|
if (lit.sign()) {
|
||||||
//UNREACHABLE();
|
auto* nf = g.find(m.mk_false());
|
||||||
|
if (ne && nf && ne->get_root() != nf->get_root()) {
|
||||||
|
IF_VERBOSE(0, verbose_stream() << "not false " << lit << " " << mk_pp(e, m) << "\n");
|
||||||
|
//UNREACHABLE();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
auto* nt = g.find(m.mk_true());
|
||||||
|
if (ne && nt && ne->get_root() != nt->get_root()) {
|
||||||
|
IF_VERBOSE(0, verbose_stream() << "not true " << lit << " " << mk_pp(e, m) << "\n");
|
||||||
|
//UNREACHABLE();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else if (to_app(e)->get_family_id() != basic_family_id && lit.sign() && g.find(e)->get_root() != g.find(m.mk_false())->get_root()) {
|
|
||||||
IF_VERBOSE(0, verbose_stream() << "not alse " << lit << " " << mk_pp(e, m) << "\n");
|
|
||||||
//UNREACHABLE();
|
|
||||||
}
|
|
||||||
else if (to_app(e)->get_family_id() != basic_family_id && !lit.sign() && g.find(e)->get_root() != g.find(m.mk_true())->get_root()) {
|
|
||||||
IF_VERBOSE(0, verbose_stream() << "not true " << lit << " " << mk_pp(e, m) << "\n");
|
|
||||||
//UNREACHABLE();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -81,8 +81,8 @@ public:
|
||||||
void backup_x() { m_backup_x = m_r_x; }
|
void backup_x() { m_backup_x = m_r_x; }
|
||||||
|
|
||||||
void restore_x() {
|
void restore_x() {
|
||||||
|
SASSERT(m_backup_x.size() == m_r_A.column_count());
|
||||||
m_r_x = m_backup_x;
|
m_r_x = m_backup_x;
|
||||||
m_r_x.reserve(m_m());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<impq> const& r_x() const { return m_r_x; }
|
vector<impq> const& r_x() const { return m_r_x; }
|
||||||
|
|
|
||||||
|
|
@ -3448,16 +3448,23 @@ namespace realclosure {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned get_sign_condition_size(numeral const &a, unsigned i) {
|
sign_condition* get_ith_sign_condition(algebraic* ext, unsigned i) {
|
||||||
algebraic * ext = to_algebraic(to_rational_function(a)->ext());
|
|
||||||
const sign_det * sdt = ext->sdt();
|
const sign_det * sdt = ext->sdt();
|
||||||
if (!sdt)
|
if (!sdt)
|
||||||
return 0;
|
return nullptr;
|
||||||
sign_condition * sc = sdt->sc(ext->sc_idx());
|
sign_condition * sc = sdt->sc(ext->sc_idx());
|
||||||
while (i) {
|
while (i && sc) {
|
||||||
if (sc) sc = sc->prev();
|
sc = sc->prev();
|
||||||
i--;
|
i--;
|
||||||
}
|
}
|
||||||
|
return sc;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned get_sign_condition_size(numeral const &a, unsigned i) {
|
||||||
|
algebraic * ext = to_algebraic(to_rational_function(a)->ext());
|
||||||
|
sign_condition * sc = get_ith_sign_condition(ext, i);
|
||||||
|
if (!sc)
|
||||||
|
return 0;
|
||||||
return ext->sdt()->qs()[sc->qidx()].size();
|
return ext->sdt()->qs()[sc->qidx()].size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3466,14 +3473,9 @@ namespace realclosure {
|
||||||
if (!is_algebraic(a))
|
if (!is_algebraic(a))
|
||||||
return 0;
|
return 0;
|
||||||
algebraic * ext = to_algebraic(to_rational_function(a)->ext());
|
algebraic * ext = to_algebraic(to_rational_function(a)->ext());
|
||||||
const sign_det * sdt = ext->sdt();
|
sign_condition * sc = get_ith_sign_condition(ext, i);
|
||||||
if (!sdt)
|
if (!sc)
|
||||||
return 0;
|
return 0;
|
||||||
sign_condition * sc = sdt->sc(ext->sc_idx());
|
|
||||||
while (i) {
|
|
||||||
if (sc) sc = sc->prev();
|
|
||||||
i--;
|
|
||||||
}
|
|
||||||
const polynomial & q = ext->sdt()->qs()[sc->qidx()];
|
const polynomial & q = ext->sdt()->qs()[sc->qidx()];
|
||||||
return q.size();
|
return q.size();
|
||||||
}
|
}
|
||||||
|
|
@ -3483,14 +3485,9 @@ namespace realclosure {
|
||||||
if (!is_algebraic(a))
|
if (!is_algebraic(a))
|
||||||
return numeral();
|
return numeral();
|
||||||
algebraic * ext = to_algebraic(to_rational_function(a)->ext());
|
algebraic * ext = to_algebraic(to_rational_function(a)->ext());
|
||||||
const sign_det * sdt = ext->sdt();
|
sign_condition * sc = get_ith_sign_condition(ext, i);
|
||||||
if (!sdt)
|
if (!sc)
|
||||||
return numeral();
|
return numeral();
|
||||||
sign_condition * sc = sdt->sc(ext->sc_idx());
|
|
||||||
while (i) {
|
|
||||||
if (sc) sc = sc->prev();
|
|
||||||
i--;
|
|
||||||
}
|
|
||||||
const polynomial & q = ext->sdt()->qs()[sc->qidx()];
|
const polynomial & q = ext->sdt()->qs()[sc->qidx()];
|
||||||
if (j >= q.size())
|
if (j >= q.size())
|
||||||
return numeral();
|
return numeral();
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ namespace datalog {
|
||||||
col = column_idx(orig[i]);
|
col = column_idx(orig[i]);
|
||||||
limit = col + column_num_bits(orig[i]);
|
limit = col + column_num_bits(orig[i]);
|
||||||
} else {
|
} else {
|
||||||
|
SASSERT(other);
|
||||||
unsigned idx = orig[i] - get_num_cols();
|
unsigned idx = orig[i] - get_num_cols();
|
||||||
col = get_num_bits() + other->column_idx(idx);
|
col = get_num_bits() + other->column_idx(idx);
|
||||||
limit = col + other->column_num_bits(idx);
|
limit = col + other->column_num_bits(idx);
|
||||||
|
|
|
||||||
|
|
@ -3330,7 +3330,7 @@ bool context::is_reachable(pob &n)
|
||||||
model_ref mdl;
|
model_ref mdl;
|
||||||
|
|
||||||
// used in case n is reachable
|
// used in case n is reachable
|
||||||
bool is_concrete;
|
bool is_concrete = false;
|
||||||
const datalog::rule * r = nullptr;
|
const datalog::rule * r = nullptr;
|
||||||
// denotes which predecessor's (along r) reach facts are used
|
// denotes which predecessor's (along r) reach facts are used
|
||||||
bool_vector reach_pred_used;
|
bool_vector reach_pred_used;
|
||||||
|
|
@ -3521,7 +3521,7 @@ lbool context::expand_pob(pob& n, pob_ref_buffer &out)
|
||||||
model_ref model;
|
model_ref model;
|
||||||
|
|
||||||
// used in case n is reachable
|
// used in case n is reachable
|
||||||
bool is_concrete;
|
bool is_concrete = false;
|
||||||
const datalog::rule * r = nullptr;
|
const datalog::rule * r = nullptr;
|
||||||
// denotes which predecessor's (along r) reach facts are used
|
// denotes which predecessor's (along r) reach facts are used
|
||||||
bool_vector reach_pred_used;
|
bool_vector reach_pred_used;
|
||||||
|
|
|
||||||
|
|
@ -1360,6 +1360,7 @@ namespace {
|
||||||
// to check it again.
|
// to check it again.
|
||||||
get_check_mark(reg) == NOT_CHECKED &&
|
get_check_mark(reg) == NOT_CHECKED &&
|
||||||
is_ground(m_registers[reg]) &&
|
is_ground(m_registers[reg]) &&
|
||||||
|
instr->m_enode != nullptr &&
|
||||||
get_pat_lbl_hash(reg) == instr->m_enode->get_lbl_hash();
|
get_pat_lbl_hash(reg) == instr->m_enode->get_lbl_hash();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3988,6 +3988,7 @@ public:
|
||||||
lp::impq term_max;
|
lp::impq term_max;
|
||||||
lp::lp_status st;
|
lp::lp_status st;
|
||||||
lpvar vi = 0;
|
lpvar vi = 0;
|
||||||
|
unsigned size_of_backup = lp().column_count();
|
||||||
if (has_int()) {
|
if (has_int()) {
|
||||||
lp().backup_x();
|
lp().backup_x();
|
||||||
}
|
}
|
||||||
|
|
@ -4008,7 +4009,8 @@ public:
|
||||||
|
|
||||||
if (has_int() && lp().has_inf_int()) {
|
if (has_int() && lp().has_inf_int()) {
|
||||||
st = lp::lp_status::FEASIBLE;
|
st = lp::lp_status::FEASIBLE;
|
||||||
lp().restore_x();
|
if (lp().column_count() == size_of_backup)
|
||||||
|
lp().restore_x();
|
||||||
}
|
}
|
||||||
if (m_nla && (st == lp::lp_status::OPTIMAL || st == lp::lp_status::UNBOUNDED)) {
|
if (m_nla && (st == lp::lp_status::OPTIMAL || st == lp::lp_status::UNBOUNDED)) {
|
||||||
switch (check_nla(level)) {
|
switch (check_nla(level)) {
|
||||||
|
|
@ -4020,7 +4022,8 @@ public:
|
||||||
st = lp::lp_status::UNBOUNDED;
|
st = lp::lp_status::UNBOUNDED;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
lp().restore_x();
|
if (lp().column_count() == size_of_backup)
|
||||||
|
lp().restore_x();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
switch (st) {
|
switch (st) {
|
||||||
|
|
|
||||||
|
|
@ -111,6 +111,7 @@ namespace datalog {
|
||||||
i5->deallocate();
|
i5->deallocate();
|
||||||
dealloc(join1);
|
dealloc(join1);
|
||||||
dealloc(proj1);
|
dealloc(proj1);
|
||||||
|
dealloc(proj2);
|
||||||
dealloc(ren1);
|
dealloc(ren1);
|
||||||
dealloc(union1);
|
dealloc(union1);
|
||||||
dealloc(filterId1);
|
dealloc(filterId1);
|
||||||
|
|
@ -281,6 +282,7 @@ namespace datalog {
|
||||||
i5->deallocate();
|
i5->deallocate();
|
||||||
dealloc(join1);
|
dealloc(join1);
|
||||||
dealloc(proj1);
|
dealloc(proj1);
|
||||||
|
dealloc(proj2);
|
||||||
dealloc(ren1);
|
dealloc(ren1);
|
||||||
dealloc(union1);
|
dealloc(union1);
|
||||||
dealloc(filterId1);
|
dealloc(filterId1);
|
||||||
|
|
|
||||||
|
|
@ -138,6 +138,7 @@ static void test_skolemize_bug() {
|
||||||
Z3_ast f3 = Z3_simplify(ctx, f2);
|
Z3_ast f3 = Z3_simplify(ctx, f2);
|
||||||
std::cout << Z3_ast_to_string(ctx, f3) << "\n";
|
std::cout << Z3_ast_to_string(ctx, f3) << "\n";
|
||||||
|
|
||||||
|
Z3_del_context(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue