Skip to content

Commit

Permalink
Do not mount volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Nov 8, 2024
1 parent 25774d3 commit 30c2304
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test-packages-action-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ jobs:
container:
image: ${{ inputs.container }}
options: --privileged
volumes:
- /run/systemd/system:/run/systemd/system
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket

timeout-minutes: 120 # 2 Hours - More than this and something is wrong
needs:
Expand Down
6 changes: 4 additions & 2 deletions tools/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -897,9 +897,11 @@ def pkg_matrix(
# else:
# ctx.info(f"No {version} ({backend}) for {distro_slug} at {prefix}")
if name == "windows":
sessions = ("upgrade",)
sessions = [
"upgrade",
]
else:
sessions = ("upgrade", "downgrade")
sessions = ["upgrade", "downgrade"]
for session in sessions:
_matrix.append(
{
Expand Down

0 comments on commit 30c2304

Please sign in to comment.