Skip to content
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

Problem: In ansible-pulp CI, pip builds often fail #244

Merged
merged 1 commit into from Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion molecule/default-upgrade/molecule.yml
Expand Up @@ -14,7 +14,9 @@ lint: |
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
# Fixes issues accessing .so files under /tmp during pip builds.
# https://github.com/docker/compose/issues/1339
- /tmp:exec,mode=1777
- /run
- /run/lock
capabilities:
Expand Down
4 changes: 3 additions & 1 deletion molecule/default/molecule.yml
Expand Up @@ -14,7 +14,9 @@ lint: |
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
# Fixes issues accessing .so files under /tmp during pip builds.
# https://github.com/docker/compose/issues/1339
- /tmp:exec,mode=1777
- /run
- /run/lock
capabilities:
Expand Down
4 changes: 3 additions & 1 deletion molecule/dynamic/molecule.yml
Expand Up @@ -14,7 +14,9 @@ lint: |
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
# Fixes issues accessing .so files under /tmp during pip builds.
# https://github.com/docker/compose/issues/1339
- /tmp:exec,mode=1777
- /run
- /run/lock
capabilities:
Expand Down
4 changes: 3 additions & 1 deletion molecule/source-dynamic/molecule.yml
Expand Up @@ -14,7 +14,9 @@ lint: |
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
# Fixes issues accessing .so files under /tmp during pip builds.
# https://github.com/docker/compose/issues/1339
- /tmp:exec,mode=1777
- /run
- /run/lock
capabilities:
Expand Down
4 changes: 3 additions & 1 deletion molecule/source-upgrade/molecule.yml
Expand Up @@ -14,7 +14,9 @@ lint: |
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
# Fixes issues accessing .so files under /tmp during pip builds.
# https://github.com/docker/compose/issues/1339
- /tmp:exec,mode=1777
- /run
- /run/lock
capabilities:
Expand Down
4 changes: 3 additions & 1 deletion molecule/source/molecule.yml
Expand Up @@ -14,7 +14,9 @@ lint: |
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
# Fixes issues accessing .so files under /tmp during pip builds.
# https://github.com/docker/compose/issues/1339
- /tmp:exec,mode=1777
- /run
- /run/lock
capabilities:
Expand Down