Skip to content

Commit

Permalink
Reworked job names
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Dec 14, 2023
1 parent 4f2d1eb commit 6df8ce9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/static_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Micromamba static builds
name: Micromamba

on:
push:
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: Mamba

on:
push:
Expand All @@ -17,7 +17,7 @@ concurrency:

jobs:
unix_tests:
name: Unix tests
name: Unix
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
Expand All @@ -29,7 +29,7 @@ jobs:
build_type: ${{ matrix.build_type }}

win_tests:
name: Windows tests
name: Windows
strategy:
matrix:
os: [windows-2019]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unix_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 6df8ce9

Please sign in to comment.