-
Notifications
You must be signed in to change notification settings - Fork 16
[error] Parameter 'commandLine' cannot be null or empty. #51
Comments
The error seems to be generated here: Lines 4754 to 4766 in 482dc73
|
Lines 193 to 194 in 482dc73
Is there |
This is indeed a problem, we should use the gzip implemented in pure nodejs |
Yes, there is.
|
What are the other packages required for this action? I can check if all of them are properly installed. |
I just tested |
What distribution did you use? I'm using a CentOs/RHEL 8 minimum install. |
I too am experiencing this same error on a centos:8 docker container.
|
Is the issue that on Centos 8 containers, Lines 193 to 194 in 482dc73
|
I suspect yes, I need to verify on CentOS, but it will take a few days. |
I found a way to get this action to work on Centos 8 containers. Before running this action, install the unzip package using dnf.
The workflow file that worked for me was: name: Deno Install Test
on: [push]
jobs:
install:
name: "Deno Install"
runs-on: ubuntu-18.04
container:
image: centos:8
steps:
- run: dnf install -y unzip
- uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- run: deno --version
|
Lines 186 to 197 in e4ecee2
Setup the 1.x version of Deno, this code is not executed at all, a confusing error... |
Since we rely on |
I don't think there's anything wrong with setup-deno: it's just that self-hosted runners don't have a lot of the same binaries that Github runners do. act has a similar issue: command not found |
When using the action:
On a
self-hosted
runner, I see the following error:Run denolib/setup-deno@v2 with: deno-version: v1.x ##[error]Parameter 'commandLine' cannot be null or empty.
Any advice?
The text was updated successfully, but these errors were encountered: