Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/openkal-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ permissions:
contents: read

env:
MCPP_VERSION: "2026.9.17.2"
MCPP_VERSION: "2026.9.17.3"
XLINGS_NON_INTERACTIVE: "1"

jobs:
Expand Down Expand Up @@ -134,11 +134,12 @@ jobs:
print(f"| {m} | {t} | {rec['status']} | {d} |")
PY

# Only this job may write, and it does not run for a pull request.
# Only this job may write. It runs for the default branch only, never for a
# pull request or a measurement requested on another branch.
propose:
name: propose the measurement
needs: measure
if: needs.measure.outputs.members != '' && github.event_name != 'pull_request' && github.event.inputs.members == ''
if: needs.measure.outputs.members != '' && github.event_name != 'pull_request' && github.event.inputs.members == '' && github.ref == 'refs/heads/main'
runs-on: ubuntu-24.04
permissions:
contents: write
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,16 @@ env:
# The release in between (2026.9.17.1, compile-flag words, #655) is included.
#
# `index.toml` min_mcpp does not move: no descriptor grammar changed.
MCPP_VERSION: "2026.9.17.2"
# ── 2026-09-17: raised 2026.9.17.2 -> 2026.9.17.3 ─────────────────────────
#
# 2026.9.17.3 closes the compiler's own search of the host's C library when
# the dependency graph supplies it (mcpp-community/mcpp#662): an openkal
# graph compiled for Windows on a host with mingw headers mixed them with
# musl's. compat.zlib and compat.mbedtls adapt to that graph by c-abi, and
# tests/openkal measures it with the host's mingw headers installed.
#
# `index.toml` min_mcpp does not move: no descriptor grammar changed.
MCPP_VERSION: "2026.9.17.3"

jobs:
lint:
Expand Down
Loading
Loading