Skip to content

Commit 0a1e731

Browse files
fix(ccc): pass 'main' as version argument
The build script expects 'main', not the default 'trunk'. 🤖 Generated by LLM (Claude, via OpenClaw)
1 parent e7f0390 commit 0a1e731

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-daily-ccc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### DO NOT EDIT - created by a script ###
2-
name: ccc via ccc trunk
2+
name: ccc via ccc main
33

44
on:
55
schedule:
@@ -62,6 +62,6 @@ jobs:
6262
image: ccc
6363
name: ccc
6464
command: build.sh
65-
args: trunk
65+
args: main
6666
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
6767
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

compilers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ compilers:
6060
- { image: dotnet, name: dotnet, command: build.sh, args: trunk }
6161
- { image: clang, name: mlir_trunk, args: mlir-trunk }
6262
- { image: go, name: go }
63-
- { image: ccc, name: ccc, command: build.sh, repos: ["https://github.com/anthropics/claudes-c-compiler/tree/main"] }
63+
- { image: ccc, name: ccc, command: build.sh, args: main, repos: ["https://github.com/anthropics/claudes-c-compiler/tree/main"] }
6464
- { image: misc, name: tinycc, command: build-tinycc.sh }
6565
- { image: misc, name: cc65, command: buildcc65.sh, repos: ["https://github.com/cc65/cc65/tree/master"] }
6666
- { image: misc, name: mrustc, command: build-mrustc.sh, args: master }

0 commit comments

Comments
 (0)