diff options
author | Chris Robinson <[email protected]> | 2022-12-18 11:38:38 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-12-18 11:38:38 -0800 |
commit | 465ee8ab23fce3f279e2f5556c7c56e2c6cfe5c8 (patch) | |
tree | 778d6ae5d565b9959b26f3a11725117a11f69096 | |
parent | b53fea6d18d508fb41c97f13284590e24fb78f6a (diff) |
Include the build type in the CI job names
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e08798b2..1a94c760 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: matrix: config: - { - name: "Win32", + name: "Win32-Release", os: windows-latest, cmake_opts: "-A Win32 \ -DALSOFT_BUILD_ROUTER=ON \ @@ -21,7 +21,7 @@ jobs: build_type: "Release" } - { - name: "Win32", + name: "Win32-Debug", os: windows-latest, cmake_opts: "-A Win32 \ -DALSOFT_BUILD_ROUTER=ON \ @@ -31,7 +31,7 @@ jobs: build_type: "Debug" } - { - name: "Win64", + name: "Win64-Release", os: windows-latest, cmake_opts: "-A x64 \ -DALSOFT_BUILD_ROUTER=ON \ @@ -41,7 +41,7 @@ jobs: build_type: "Release" } - { - name: "Win64", + name: "Win64-Debug", os: windows-latest, cmake_opts: "-A x64 \ -DALSOFT_BUILD_ROUTER=ON \ @@ -51,13 +51,13 @@ jobs: build_type: "Debug" } - { - name: "macOS", + name: "macOS-Release", os: macos-latest, cmake_opts: "-DALSOFT_REQUIRE_COREAUDIO=ON", build_type: "Release" } - { - name: "Linux", + name: "Linux-Release", os: ubuntu-latest, cmake_opts: "-DALSOFT_REQUIRE_RTKIT=ON \ -DALSOFT_REQUIRE_ALSA=ON \ @@ -112,5 +112,5 @@ jobs: uses: actions/[email protected] if: ${{ matrix.config.os == 'windows-latest' }} with: - name: soft_oal-${{matrix.config.build_type}}-${{matrix.config.name}} + name: soft_oal-${{matrix.config.name}} path: build/archive |