From e908dafd1d6ec02a8a15c60ba332348aa08d9a7b Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Wed, 11 Dec 2024 21:54:45 +0100 Subject: [PATCH] ci: split docker install for other os Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1aef0ae..95c9a87 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -103,7 +103,7 @@ jobs: let includes = []; for (const os of ['ubuntu-latest', 'macos-13', 'windows-latest']) { for (const test of tests) { - if (os === 'macos-13' && test === 'docker/install.test.itg.ts') { + if (test === 'docker/install.test.itg.ts') { includes.push({ os: os, test: test, docker_install_type: 'image', docker_install_version: '27.3.1' }); includes.push({ os: os, test: test, docker_install_type: 'image', docker_install_version: 'master' }); includes.push({ os: os, test: test, docker_install_type: 'image', docker_install_version: 'latest' });