-
Notifications
You must be signed in to change notification settings - Fork 2
Unable to run the action inside docker #44
New issue
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
Labels
feature
A new functionality
Comments
grafin
added a commit
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes #44
grafin
added a commit
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes #44
grafin
added a commit
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes #44
grafin
added a commit
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes #44
grafin
added a commit
to grafin/setup-tarantool
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes tarantool#44
grafin
added a commit
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes #44
Totktonada
pushed a commit
that referenced
this issue
Feb 25, 2024
In ubuntu:22.04 docker man dpkg contains following: "-L|--listfiles <package>... List files 'owned' by package(s)." `dpkg -L cmake` mentions file /usr/share/doc/cmake/NEWS.Debian.gz, which is not present in the system after successful `apt-get -y install cmake`. This file is not installed because it matches exclude-path in dpkg config, and `apt-get install` respects this config option, while `dpkg -L` doesn't. This leads to setup-tarantool failing during packaging cache. This patch filters `dpkg -L` output according to dpkg configs. Closes #44
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a job set up as follows (github public runner):
And then a step (you may take a look at the workflow file here ):
The workflow passes fine, but if I change
runs-on
to:or
The job starts failing like this:
The problem is described in #41 (comment) and should be fixed by #41
The text was updated successfully, but these errors were encountered: