mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Do not mount volumes
This commit is contained in:
parent
4343d8f0c0
commit
f334b77d26
2 changed files with 4 additions and 5 deletions
|
@ -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:
|
||||
|
|
|
@ -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(
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue