Skip to content

Commit d22d2a4

Browse files
committed
Merge branch 'develop' into feature/add-e2e-test
2 parents da87214 + 79c5c10 commit d22d2a4

File tree

5 files changed

+12
-41
lines changed

5 files changed

+12
-41
lines changed

.github/workflows/claude.yml

Lines changed: 7 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -13,46 +13,17 @@ permissions:
1313
actions: read
1414

1515
env:
16-
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY_SORA_OSS_SONNET }}
16+
CLAUDE_API_KEY: ${{ secrets.ANTHROPIC_API_KEY_SORA_OSS_SONNET }}
17+
CLAUDE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN_VOLUNTAS }}
1718

1819
jobs:
19-
claude-opus-response-voluntas:
20-
if: github.event.comment.user.login == 'voluntas'
20+
claude-response:
2121
runs-on: ubuntu-24.04
2222
timeout-minutes: 15
2323
steps:
2424
- uses: actions/checkout@v5
25-
- uses: anthropics/claude-code-action@v1
25+
- uses: shiguredo/github-actions/.github/actions/claude-code-action@main
2626
with:
27-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN_VOLUNTAS }}
28-
github_token: ${{ secrets.GITHUB_TOKEN }}
29-
trigger_phrase: "!opus"
30-
claude_args: |
31-
--model claude-opus-4-1-20250805
32-
33-
check-permission:
34-
if: github.event.comment.user.login != 'voluntas'
35-
runs-on: ubuntu-24.04
36-
outputs:
37-
has_permission: ${{ steps.check.outputs.has-permission }}
38-
steps:
39-
- uses: actions/checkout@v5
40-
- id: check
41-
uses: shiguredo/github-actions/.github/actions/check-write-permission@main
42-
with:
43-
username: ${{ github.event.comment.user.login }}
44-
45-
claude-sonnet-response-others:
46-
needs: check-permission
47-
if: needs.check-permission.outputs.has_permission == 'true'
48-
runs-on: ubuntu-24.04
49-
timeout-minutes: 15
50-
steps:
51-
- uses: actions/checkout@v5
52-
- uses: anthropics/claude-code-action@v1
53-
with:
54-
anthropic_api_key: ${{ env.ANTHROPIC_API_KEY }}
55-
github_token: ${{ secrets.GITHUB_TOKEN }}
56-
trigger_phrase: "!sonnet"
57-
claude_args: |
58-
--model claude-sonnet-4-5-20250929
27+
api_key: ${{ env.CLAUDE_API_KEY }}
28+
oauth_user: voluntas
29+
oauth_token: ${{ env.CLAUDE_OAUTH_TOKEN }}

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- @voluntas
2121
- [CHANGE] enum の `kNvidiaVideoCodecSdk``kNvidiaVideoCodec` に変更する
2222
- @voluntas
23-
- [CHANGE] liwebrtc のバージョンを m141.7390.2.0 に上げる
23+
- [CHANGE] liwebrtc のバージョンを m141.7390.3.3 に上げる
2424
- macOS, iOS が利用している clang, libc++ を Apple Clang のものから libwebrtc 管理下の Clang のものに変えたので破壊的変更となります
2525
- libwebrtc m141 で `rtc_config.crypto_options` の型が変更されたため、`emplace()` ではなく直接アクセスするよう修正
2626
- Windows で `CreateWindowsCoreAudioAudioDeviceModule``Environment` を受け取る API に変わったため、それに追従

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WEBRTC_BUILD_VERSION=m141.7390.2.0
1+
WEBRTC_BUILD_VERSION=m141.7390.3.3
22
BOOST_VERSION=1.89.0
33
BOOST_SHA256_HASH=9de758db755e8330a01d995b0a24d09798048400ac25c03fc5ea9be364b13c93
44
CMAKE_VERSION=4.1.2

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025.6.0-canary.7
1+
2025.6.0-canary.8

examples/DEPS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
SORA_CPP_SDK_VERSION=2025.6.0-canary.7
2-
WEBRTC_BUILD_VERSION=m141.7390.2.0
1+
SORA_CPP_SDK_VERSION=2025.6.0-canary.8
2+
WEBRTC_BUILD_VERSION=m141.7390.3.3
33
BOOST_VERSION=1.89.0
44
CMAKE_VERSION=4.1.2
55
SDL3_VERSION=3.2.22

0 commit comments

Comments
 (0)