We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runn loadt
When running runn loadt on GitHub Actions, it doesn't finish. Therefore it meets GitHub Actions timeout, and fail CI. I tried on ubuntu-latest and macos-latest, same results. exec log: /~https://github.com/mi-wada/tmp_runn_load_test_stuck_on_gh_actions/actions/runs/12704061252
ubuntu-latest
macos-latest
name: Test on: push: branches: - main pull_request: defaults: run: shell: bash concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test_on_ubuntu_latest: runs-on: ubuntu-latest timeout-minutes: 1 steps: - uses: actions/checkout@v4 - name: Install runn env: RUNN_VERSION: v0.122.3 run: | RUNN_BIN_URL="/~https://github.com/k1LoW/runn/releases/download/${RUNN_VERSION}/runn_${RUNN_VERSION}_linux_amd64.tar.gz" curl -sL -o runn.tar.gz "$RUNN_BIN_URL" tar -xvf runn.tar.gz sudo mv runn /usr/local/bin/ - run: | runn run hello_world.yaml --scopes run:exec - run: | runn loadt hello_world.yaml --scopes run:exec test_on_macos_latest: runs-on: macos-latest timeout-minutes: 1 steps: - uses: actions/checkout@v4 - name: Install runn run: | brew install k1LoW/tap/runn runn --version - run: | runn run hello_world.yaml --scopes run:exec - run: | runn loadt hello_world.yaml --scopes run:exec
desc: Hello, World! steps: - exec: command: echo "Hello, World!"
reproduced repo: /~https://github.com/mi-wada/tmp_runn_load_test_stuck_on_gh_actions/blob/main/.github/workflows/test.yaml
Finish after about 10 secs as a default duration.
duration
runn loadt hello_world.yaml --scopes run:exec
runn/cmd/loadt.go
Lines 93 to 101 in 1f373ba
The text was updated successfully, but these errors were encountered:
@mi-wada Thank you for your report! I'll check it.
Sorry, something went wrong.
Updating to the fixed version v0.127.1 has fixed our problem. Thank you so much for your speedy resolution!
k1LoW
Successfully merging a pull request may close this issue.
Problem
When running
runn loadt
on GitHub Actions, it doesn't finish. Therefore it meets GitHub Actions timeout, and fail CI. I tried onubuntu-latest
andmacos-latest
, same results.exec log: /~https://github.com/mi-wada/tmp_runn_load_test_stuck_on_gh_actions/actions/runs/12704061252
.github/workflows/test.yaml
hello_world.yaml
reproduced repo: /~https://github.com/mi-wada/tmp_runn_load_test_stuck_on_gh_actions/blob/main/.github/workflows/test.yaml
Expected behavior
Finish after about 10 secs as a default
duration
.My investigation log
runn loadt hello_world.yaml --scopes run:exec
works well on my MacBook.runn/cmd/loadt.go
Lines 93 to 101 in 1f373ba
The text was updated successfully, but these errors were encountered: