Reworked job names

This commit is contained in:
Johan Mabille 2023-12-14 15:19:06 +01:00
parent 4f2d1ebd43
commit 6df8ce92fa
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
name: Micromamba static builds
name: Micromamba
on:
push:
@ -19,7 +19,7 @@ concurrency:
jobs:
micromamba-static-unix:
name: "micromamba - ${{ matrix.platform }}-${{ matrix.arch }}"
name: "${{ matrix.platform }}-${{ matrix.arch }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
@ -104,7 +104,7 @@ jobs:
path: ${{ github.workspace }}/artifacts/micromamba
micromamba-static-win:
name: "micromamba - win-64"
name: "win-64"
runs-on: windows-2022
steps:
- uses: actions/checkout@v3

View File

@ -1,4 +1,4 @@
name: Tests
name: Mamba
on:
push:
@ -17,7 +17,7 @@ concurrency:
jobs:
unix_tests:
name: Unix tests
name: Unix
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
@ -29,7 +29,7 @@ jobs:
build_type: ${{ matrix.build_type }}
win_tests:
name: Windows tests
name: Windows
strategy:
matrix:
os: [windows-2019]

View File

@ -56,7 +56,7 @@ jobs:
key_suffix: ${{ inputs.os }}-${{ inputs.build_type }}
libmamba_tests_unix:
name: Test libmamba
name: libmamba tests
needs: ["build_shared_unix"]
runs-on: ${{ inputs.os }}
steps:
@ -79,7 +79,7 @@ jobs:
./build/libmamba/tests/test_libmamba
libmambapy_tests_unix:
name: Test libmamba Python bindings
name: libmambapy tests
needs: ["build_shared_unix"]
runs-on: ${{ inputs.os }}
steps:
@ -106,7 +106,7 @@ jobs:
python -m pytest libmambapy/tests/ ${{ runner.debug == 'true' && '-v' || '--exitfirst' }}
mamba_integration_tests_unix:
name: Test integration mamba
name: mamba integration tests
needs: ["build_shared_unix"]
runs-on: ${{ inputs.os }}
steps:

View File

@ -61,7 +61,7 @@ jobs:
key_suffix: ${{ inputs.os }}-${{ inputs.build_type }}
libmamba_tests_win:
name: Test libmamba
name: libmamba tests
needs: ["build_shared_win"]
runs-on: ${{ inputs.os }}
steps:
@ -86,7 +86,7 @@ jobs:
cd ./build/libmamba && ./tests/test_libmamba
libmambapy_tests_win:
name: Test libmamba Python bindings
name: libmambapy tests
needs: ["build_shared_win"]
runs-on: ${{ inputs.os }}
steps:
@ -114,7 +114,7 @@ jobs:
python -m pytest libmambapy/tests/ ${{ runner.debug == 'true' && '-v' || '--exitfirst' }}
mamba_integration_tests_win:
name: Test integration mamba
name: mamba integration tests
needs: ["build_shared_win"]
runs-on: ${{ inputs.os }}
steps: