Skip to content

Commit

Permalink
workflow_dispatch のみにする
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Nov 4, 2024
1 parent de43231 commit 072d234
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: build-debug

on:
workflow_dispatch:
push:
paths-ignore:
- "examples/**"
- "**.md"
inputs:
loopCount:
required: true
type: number
defualt: 10

env:
TEST_SIGNALING_URLS: ${{ secrets.TEST_SIGNALING_URLS }}
Expand Down Expand Up @@ -243,7 +244,7 @@ jobs:
- name: E2E Test sora-python-sdk
working-directory: sora-python-sdk
run: |
for i in {1..50}; do
for i in {1..${{ inputs.loopCount || 10 }}}; do
echo "---------------- $i 回目 ----------------"
sleep 10
lldb-18 --batch -o 'command script import test_with_llvm.py' -o 'test'
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/build-relwithdebinfo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: build-relwithdebinfo

on:
workflow_dispatch:
push:
paths-ignore:
- "examples/**"
- "**.md"
inputs:
loopCount:
required: true
type: number
defualt: 10

env:
TEST_SIGNALING_URLS: ${{ secrets.TEST_SIGNALING_URLS }}
Expand Down Expand Up @@ -194,7 +195,7 @@ jobs:
- name: E2E Test sora-python-sdk
working-directory: sora-python-sdk
run: |
for i in {1..50}; do
for i in {1..${{ inputs.loopCount || 10 }}}; do
echo "---------------- $i 回目 ----------------"
sleep 10
lldb-18 --batch -o 'command script import test_with_llvm.py' -o 'test'
Expand Down

0 comments on commit 072d234

Please # to comment.