File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
- uses : actions-ecosystem/action-get-latest-tag@v1
114
114
id : get-latest-tag
115
115
- name : setup podman
116
- run : sudo apt install podman && systemctl --user start podman.socket && ls $XDG_RUNTIME_DIR/ podman/podman.sock
116
+ run : sudo apt install podman && systemctl --user start podman.socket && systemctl --user status podman.socket
117
117
- name : e2e test
118
118
run : make e2e-cli-test
119
119
env :
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ var _ = Describe("home context", func() {
123
123
}
124
124
originalEnv := os .Getenv ("DOCKER_HOST" )
125
125
BeforeAll (func () {
126
- os .Setenv ("DOCKER_HOST" , "unix:///run/user/1000 /podman/podman.sock" )
126
+ os .Setenv ("DOCKER_HOST" , "unix://" + os . Getenv ( "XDG_RUNTIME_DIR" ) + " /podman/podman.sock" )
127
127
err := home .GetManager ().ContextCreate (c , true )
128
128
Expect (err ).NotTo (HaveOccurred ())
129
129
})
You can’t perform that action at this time.
0 commit comments