From 95b2413c89f1ff30e4c3f362b70d34537eadfe4e Mon Sep 17 00:00:00 2001 From: Ryan Phillips Date: Fri, 29 Apr 2022 09:27:14 -0500 Subject: [PATCH] update workflow with go symlinks Signed-off-by: Ryan Phillips --- .github/workflows/ci.yml | 2 ++ conmon-rs/server/src/oom_watcher.rs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1696e44d99..e41d1108cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,5 +195,7 @@ jobs: path: target/x86_64-unknown-linux-musl/release - run: chmod +x target/x86_64-unknown-linux-musl/release/conmonrs - run: .github/install-deps + - name: create symlink + run: sudo ln -f -s $GOROOT/bin/* /usr/bin/ - name: Integration tests run: RUNTIME_PATH="/usr/sbin/runc" make integration-static diff --git a/conmon-rs/server/src/oom_watcher.rs b/conmon-rs/server/src/oom_watcher.rs index 6085be072d..cfac20d2e7 100644 --- a/conmon-rs/server/src/oom_watcher.rs +++ b/conmon-rs/server/src/oom_watcher.rs @@ -166,7 +166,7 @@ impl OOMWatcher { let (mut watcher, mut rx) = Self::async_watcher()?; debug!( - "{}:watching oom path {}", + "{}: watching oom path {}", pid, memory_events_file_path.display() );