test windows
Some checks failed
Global Runner Check / test-linux (push) Successful in 1s
Global Runner Check / test-windows (push) Failing after 1s
Global Runner Check / test-valgrind (push) Successful in 0s
Infrastructure Stress Test / memory-analysis (push) Successful in 16s
Infrastructure Stress Test / parallel-builds (1) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (2) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (3) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (7) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (8) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (4) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (5) (push) Has been cancelled
Infrastructure Stress Test / parallel-builds (6) (push) Has been cancelled

This commit is contained in:
2026-02-10 10:46:44 +03:00
parent bd2233f6b2
commit ed8b896ba5
2 changed files with 7 additions and 1 deletions

View File

@@ -13,3 +13,9 @@ jobs:
steps: steps:
- run: valgrind --version - run: valgrind --version
- run: echo "Valgrind is ready for action!" - run: echo "Valgrind is ready for action!"
test-windows:
runs-on: windows
steps:
- run: clang++ --version
- run: echo "Hello from Windows host!"

View File

@@ -3,7 +3,7 @@ on: [push]
jobs: jobs:
parallel-builds: parallel-builds:
runs-on: linux runs-on: [linux, windows]
strategy: strategy:
matrix: matrix:
task_id: [1, 2, 3, 4, 5, 6, 7, 8] task_id: [1, 2, 3, 4, 5, 6, 7, 8]