From 3a5f7b0fcdb5ae2a48e109ba565d2c101b170ec9 Mon Sep 17 00:00:00 2001 From: WANG Xu Date: Wed, 5 Feb 2025 17:10:44 +0800 Subject: [PATCH] refactor: remove ubuntu-latest and macos-latest Signed-off-by: WANG Xu --- .github/workflows/taosd-ci-build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/taosd-ci-build.yml b/.github/workflows/taosd-ci-build.yml index 7c5aeb7bfc..372008b585 100644 --- a/.github/workflows/taosd-ci-build.yml +++ b/.github/workflows/taosd-ci-build.yml @@ -18,11 +18,17 @@ concurrency: jobs: build: + name: Build and test on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-latest, macos-13, macos-14, macos-15] - name: Build and test on ${{ matrix.os }} + os: + - ubuntu-20.04 + - ubuntu-22.04 + - ubuntu-24.04 + - macos-13 + - macos-14 + - macos-15 steps: - name: Checkout the repository