Skip to content

Commit

Permalink
Shorten job names
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Oct 6, 2024
1 parent 2e866b4 commit ea26544
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -56,4 +56,4 @@ jobs:
- name: Test
run: |
cd ecflow
ctest --preset ${{ matrix.preset }}.${{ matrix.buildtype }} -L nighly
ctest --preset ${{ matrix.preset }}.${{ matrix.buildtype }} -L nightly
34 changes: 17 additions & 17 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
},
{
"name": "linux.ubuntu.all",
"name": "ubuntu.all",
"description": "Build on 'Linux/Ubuntu', all components",
"hidden": true,
"inherits": "linux.ubuntu",
Expand All @@ -45,56 +45,56 @@
}
},
{
"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"
}
}
],
"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
},
Expand All @@ -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
},
Expand Down

0 comments on commit ea26544

Please sign in to comment.