From 0a1e73139d8d3ca6b399bbc5bc2232d1e8f3455d Mon Sep 17 00:00:00 2001 From: mattgodbolt-molty Date: Sat, 7 Feb 2026 20:53:57 -0600 Subject: [PATCH] fix(ccc): pass 'main' as version argument MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build script expects 'main', not the default 'trunk'. 🤖 Generated by LLM (Claude, via OpenClaw) --- .github/workflows/build-daily-ccc.yml | 4 ++-- compilers.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-daily-ccc.yml b/.github/workflows/build-daily-ccc.yml index 8aa08b1..2766183 100644 --- a/.github/workflows/build-daily-ccc.yml +++ b/.github/workflows/build-daily-ccc.yml @@ -1,5 +1,5 @@ ### DO NOT EDIT - created by a script ### -name: ccc via ccc trunk +name: ccc via ccc main on: schedule: @@ -62,6 +62,6 @@ jobs: image: ccc name: ccc command: build.sh - args: trunk + args: main AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/compilers.yaml b/compilers.yaml index a99f90e..c8a7916 100644 --- a/compilers.yaml +++ b/compilers.yaml @@ -60,7 +60,7 @@ compilers: - { image: dotnet, name: dotnet, command: build.sh, args: trunk } - { image: clang, name: mlir_trunk, args: mlir-trunk } - { image: go, name: go } - - { image: ccc, name: ccc, command: build.sh, repos: ["https://github.com/anthropics/claudes-c-compiler/tree/main"] } + - { image: ccc, name: ccc, command: build.sh, args: main, repos: ["https://github.com/anthropics/claudes-c-compiler/tree/main"] } - { image: misc, name: tinycc, command: build-tinycc.sh } - { image: misc, name: cc65, command: buildcc65.sh, repos: ["https://github.com/cc65/cc65/tree/master"] } - { image: misc, name: mrustc, command: build-mrustc.sh, args: master }