diff --git a/.gitea/workflows/docker-test.yml b/.gitea/workflows/docker-test.yml index 2546ad2..4d28353 100644 --- a/.gitea/workflows/docker-test.yml +++ b/.gitea/workflows/docker-test.yml @@ -1,16 +1,11 @@ jobs: build: - runs-on: windows-2019 + runs-on: windows-cont # Must match your runner's label in config.yaml container: image: mcr.microsoft.com/windows/servercore:ltsc2019 - options: --isolation=process + options: --isolation=process --entrypoint cmd /c # Force CMD as entrypoint + env: + ACTIONS_RUNNER_HOOK_JOB_STARTED: "echo Container started" # Debug hook steps: - - name: Install Rust - run: | - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - .\rustup-init.exe -y --default-toolchain stable - refreshenv - rustup component add rust-src - - name: Build - run: | - cargo build --release \ No newline at end of file + - name: Ping test + run: ping 127.0.0.1 -n 5 # Basic connectivity check \ No newline at end of file