diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index 3e0e50be..2215e1cd 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -12,9 +12,11 @@ on: push: paths: - client/** + - .github/workflows/ci-scripts-build.yml pull_request: paths: - client/** + - .github/workflows/ci-scripts-build.yml env: SETUP_PATH: .ci-local:.ci @@ -34,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04] + os: [ubuntu-24.04, ubuntu-22.04] cmp: [gcc, clang] configuration: [default, static, debug, static-debug] steps: @@ -62,7 +64,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-14, macos-13] + os: [macos-15, macos-14, macos-13] cmp: [clang] configuration: [default, debug] steps: @@ -90,16 +92,9 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2022, windows-2019] - cmp: [gcc, vs2022, vs2019] + os: [windows-2022, windows-2025] + cmp: [gcc, vs2022] configuration: [default, static, debug, static-debug] - exclude: - - os: windows-2022 - cmp: vs2019 - - - os: windows-2019 - cmp: vs2022 - steps: - uses: actions/checkout@v4 with: