diff --git a/.github/workflows/push-server.yml b/.github/workflows/push-server.yml index f6f41b5959..3f62c2e91f 100644 --- a/.github/workflows/push-server.yml +++ b/.github/workflows/push-server.yml @@ -4,7 +4,7 @@ on: jobs: build_server: name: Building Server Docker Image - runs-on: ubuntu-latest + runs-on: blacksmith-8vcpu-ubuntu-2204 steps: - name: Checkout the repo uses: actions/checkout@v4 diff --git a/server/src/main.rs b/server/src/main.rs index 21f56bac9f..9d0fca9dec 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -1,4 +1,5 @@ fn main() -> std::io::Result<()> { + log::info!("hi man, oh you can cache, can you go faster 🤨"); log::info!("hi man, oh you can cache, can you go faster 🤨"); trieve_server::main() }