From f03c96dc6e7e65454c72f5ad7b7246e8010c406c Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Sun, 6 Oct 2024 19:19:03 +0100 Subject: [PATCH] Shorten job names --- .github/workflows/sandbox.yml | 6 +++--- CMakePresets.json | 34 +++++++++++++++++----------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/sandbox.yml b/.github/workflows/sandbox.yml index 45c346bcd..34ea77b14 100644 --- a/.github/workflows/sandbox.yml +++ b/.github/workflows/sandbox.yml @@ -16,12 +16,12 @@ jobs: container: - ubuntu_2404_amd64 preset: - - linux.ubuntu.all.gcc13 - - linux.ubuntu.all.gcc14 + - ubuntu.all.gcc13 + - ubuntu.all.gcc14 buildtype: - release - name: ecFlow ${{ matrix.preset }}.${{ matrix.buildtype }} @ ${{ matrix.container }} + name: ${{ matrix.preset }}.${{ matrix.buildtype }} @ ${{ matrix.container }} if: github.repository_owner == 'marcosbento' runs-on: ubuntu-latest diff --git a/CMakePresets.json b/CMakePresets.json index c3d0689e2..d82110524 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -25,7 +25,7 @@ } }, { - "name": "linux.ubuntu.all", + "name": "ubuntu.all", "description": "Build on 'Linux/Ubuntu', all components", "hidden": true, "inherits": "linux.ubuntu", @@ -45,37 +45,37 @@ } }, { - "name": "linux.ubuntu.all.gcc13", + "name": "ubuntu.all.gcc13", "description": "Build on 'Linux/Ubuntu', all components, using 'GNU GCC 13'", "hidden": true, - "inherits": "linux.ubuntu.all", + "inherits": "ubuntu.all", "cacheVariables": { "CMAKE_C_COMPILER": "gcc-13", "CMAKE_CXX_COMPILER": "g++-13" } }, { - "name": "linux.ubuntu.all.gcc13.release", + "name": "ubuntu.all.gcc13.release", "description": "Build on 'Linux/Ubuntu', all components, using 'GNU GCC 13', for 'Release'", - "inherits": "linux.ubuntu.all.gcc13", + "inherits": "ubuntu.all.gcc13", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" } }, { - "name": "linux.ubuntu.all.gcc14", + "name": "ubuntu.all.gcc14", "description": "Build on 'Linux/Ubuntu', all components, using 'GNU GCC 14'", "hidden": true, - "inherits": "linux.ubuntu.all", + "inherits": "ubuntu.all", "cacheVariables": { "CMAKE_C_COMPILER": "gcc-14", "CMAKE_CXX_COMPILER": "g++-14" } }, { - "name": "linux.ubuntu.all.gcc14.release", + "name": "ubuntu.all.gcc14.release", "description": "Build on 'Linux/Ubuntu', all components, using 'GNU GCC 14', for 'Release'", - "inherits": "linux.ubuntu.all.gcc14", + "inherits": "ubuntu.all.gcc14", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" } @@ -83,18 +83,18 @@ ], "buildPresets": [ { - "name": "linux.ubuntu.all.gcc13.release", - "configurePreset": "linux.ubuntu.all.gcc13.release" + "name": "ubuntu.all.gcc13.release", + "configurePreset": "ubuntu.all.gcc13.release" }, { - "name": "linux.ubuntu.all.gcc14.release", - "configurePreset": "linux.ubuntu.all.gcc14.release" + "name": "ubuntu.all.gcc14.release", + "configurePreset": "ubuntu.all.gcc14.release" } ], "testPresets": [ { - "name": "linux.ubuntu.all.gcc13.release", - "configurePreset": "linux.ubuntu.all.gcc13.release", + "name": "ubuntu.all.gcc13.release", + "configurePreset": "ubuntu.all.gcc13.release", "output": { "outputOnFailure": true }, @@ -104,8 +104,8 @@ } }, { - "name": "linux.ubuntu.all.gcc14.release", - "configurePreset": "linux.ubuntu.all.gcc14.release", + "name": "ubuntu.all.gcc14.release", + "configurePreset": "ubuntu.all.gcc14.release", "output": { "outputOnFailure": true },