mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #358] Makefile support #254
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#254
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 @ctopinka on GitHub (Sep 4, 2020).
Original GitHub issue: https://github.com/nektos/act/issues/358
[CI/test] ⭐ Run make test
| /github/workflow/5: line 2: make: command not found
[CI/test] ❌ Failure - make test
@ctopinka commented on GitHub (Sep 7, 2020):
I see this now.
Just grab an image that includes make?
@ctopinka commented on GitHub (Sep 7, 2020):
Action is:
@ctopinka commented on GitHub (Sep 7, 2020):
Looks like I can just add one of these for it.
https://github.com/nektos/act-environments/blob/master/images/linux/scripts/installers/cmake.sh
@christopinka commented on GitHub (Sep 8, 2020):
Now I see build-essential is already there. Hmm... must not like my yml.
@christopinka commented on GitHub (Sep 10, 2020):
Solution was
Dockerfile with
FROM node:current-buster-slim
RUN apt-get update && apt-get install build-essential -y
$ docker build -t mynode-slim .
$ act -P ubuntu-latest=mynode-slim:latest
@christopinka commented on GitHub (Sep 10, 2020):
Alternatively choose an image with build-essentials
@christopinka commented on GitHub (Sep 10, 2020):
This can be closed. Thanks.
@codefromthecrypt commented on GitHub (Apr 9, 2021):
Is this worth having folks work find this, then understand and work around? make is a regular tool used especially in golang projects. It would be a cleaner flow and close to a first time home run, if at least the large image had make installed on it...