diff options
-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 |