mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #888] Issue: compiler included in custom docker image not found when using act #531
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#531
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 @jmarcosfer on GitHub (Nov 17, 2021).
Original GitHub issue: https://github.com/nektos/act/issues/888
System information
act: catthehacker/ubuntu:full-latestactversion: 0.2.24Expected behaviour
I'm running a CI workflow that should build a JS library by cross-compiling source code in cpp using Emscripten. The workflow simply runs a shell script which then generates the necessary bindings and produces the compiled WASM files and corresponding javascript wrappers.
This whole workflow runs in a custom docker image, as specific on the build job's
containerproperty, which has everything this process needs (all Emscripten SDKs, etc). This docker image runs the build process correctly on my two machines and those of my colleagues (as you'd expect from such containeraized process).I have eventually managed to make the workflow work directly on Github Actions, so I know it's not the workflow setup that's failing.
Actual behaviour
When run with
act pushhowever, the custom docker container is spawned and the cpp bindings are generated, but compilation fails because the Emscripten compiler toolemcc(included with our image) is not found.Workflow and/or repository
repo: https://github.com/MTG/essentia.js/tree/dev
Steps to reproduce
actoutputLog
@catthehacker commented on GitHub (Nov 17, 2021):
Fixed by https://github.com/nektos/act/pull/771
Duplicate of #757
@jmarcosfer commented on GitHub (Nov 17, 2021):
@catthehacker Thanks for the quick response! I guess #771 will be included in the next release?
@catthehacker commented on GitHub (Nov 17, 2021):
Yes, that is correct
@catthehacker commented on GitHub (Nov 17, 2021):
@jmarcosfer eventually you can grab build snapshot from here
https://github.com/nektos/act/actions/runs/1275559910