mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #833] Frozen local run with no indication of error #505
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#505
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lermana on GitHub (Oct 4, 2021).
Original GitHub issue: https://github.com/nektos/act/issues/833
Background
Hello! Really enjoying
actso far -- thanks.I am trying to run a test job (which runs unit tests in Python 3) as part of a workflow. The other part of the workflow (which I'd like to have depend on the tests passing) works fine. The test job, however, seems to just hang, and without any indication of a failure. This test job runs fine in live GitHub Actions.
I searched for open issues containing
"frozen"or"stuck"in the title and didn't see any, so thought I'd make a ticket.System information
20.10.8act:catthehacker/ubuntu:act-latestactversion:act version 0.2.24Expected behaviour
These tests should run to completion. In GitHub Actions (or when run locally), I get something like the following in std out:
Additionally, in GitHub Actions, I see
"Post job cleanup."pertaining tocheckout@v2:For reference, the Actions run is generally done, start-to-finish, in around 2.5mins.
Actual behaviour
Unfortunately, the command I'm running just ... hangs, for a really long time (like 10min+, easily).
Here is semi-redacted output log:
Additionally, I can
execinto the hanging container, but when I try to look into what's happening, I find an empty folder:Workflow and/or repository
@catthehacker commented on GitHub (Oct 4, 2021):
change
apt-get update/installtoapt-get update/install -yq@lermana commented on GitHub (Oct 4, 2021):
that did it -- thanks!