diff --git a/.github/workflows/csharp-darwin-snippets.yaml b/.github/workflows/csharp-darwin-snippets.yaml index a933466..afe2c8c 100644 --- a/.github/workflows/csharp-darwin-snippets.yaml +++ b/.github/workflows/csharp-darwin-snippets.yaml @@ -18,7 +18,9 @@ jobs: pull-requests: write runs-on: macos-latest strategy: + fail-fast: false matrix: + senzingsdk-version: [production-v4, staging-v4] include: - dotnet-version: "8" @@ -35,7 +37,7 @@ jobs: - name: install Senzing SDK uses: senzing-factory/github-action-install-senzing-sdk@v3 with: - senzingsdk-repository-path: ${{ secrets.SENZING_OSX_BETA_REPOSITORY }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: configure environment run: | diff --git a/.github/workflows/csharp-linux-snippets.yaml b/.github/workflows/csharp-linux-snippets.yaml index 2f36e2b..47271d4 100644 --- a/.github/workflows/csharp-linux-snippets.yaml +++ b/.github/workflows/csharp-linux-snippets.yaml @@ -20,7 +20,9 @@ jobs: pull-requests: write runs-on: ubuntu-latest strategy: + fail-fast: false matrix: + senzingsdk-version: [production-v4, staging-v4] include: - dotnet-version: "8" @@ -38,8 +40,7 @@ jobs: uses: senzing-factory/github-action-install-senzing-sdk@v3 with: packages-to-install: "senzingsdk-runtime senzingsdk-setup" - senzingsdk-repository-package: ${{ secrets.SENZING_APT_BETA_STAGING_REPOSITORY_PACKAGE }} - senzingsdk-repository-path: ${{ secrets.SENZING_APT_BETA_STAGING_REPOSITORY_URL }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: configure local nuget repo run: | diff --git a/.github/workflows/csharp-windows-snippets.yaml b/.github/workflows/csharp-windows-snippets.yaml index a4dd14d..d6d5d1d 100644 --- a/.github/workflows/csharp-windows-snippets.yaml +++ b/.github/workflows/csharp-windows-snippets.yaml @@ -18,7 +18,9 @@ jobs: pull-requests: write runs-on: windows-latest strategy: + fail-fast: false matrix: + senzingsdk-version: [production-v4, staging-v4] include: - dotnet-version: "8" @@ -35,7 +37,7 @@ jobs: - name: install Senzing SDK uses: senzing-factory/github-action-install-senzing-sdk@v3 with: - senzingsdk-repository-path: ${{ secrets.SENZING_WIN_BETA_REPOSITORY }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: configure local nuget repo run: | diff --git a/.github/workflows/dotnet-format.yaml b/.github/workflows/dotnet-format.yaml index 1752e31..ac61127 100644 --- a/.github/workflows/dotnet-format.yaml +++ b/.github/workflows/dotnet-format.yaml @@ -13,7 +13,9 @@ jobs: dotnet-format: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: + senzingsdk-version: [production-v4, staging-v4] include: - dotnet-version: "8" @@ -31,8 +33,7 @@ jobs: uses: senzing-factory/github-action-install-senzing-sdk@v3 with: packages-to-install: "senzingsdk-runtime senzingsdk-setup" - senzingsdk-repository-package: ${{ secrets.SENZING_APT_BETA_STAGING_REPOSITORY_PACKAGE }} - senzingsdk-repository-path: ${{ secrets.SENZING_APT_BETA_STAGING_REPOSITORY_URL }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: configure local nuget repo run: | diff --git a/.github/workflows/java-darwin-snippets.yaml b/.github/workflows/java-darwin-snippets.yaml index 9053b9c..ca92245 100644 --- a/.github/workflows/java-darwin-snippets.yaml +++ b/.github/workflows/java-darwin-snippets.yaml @@ -22,6 +22,7 @@ jobs: matrix: java-version: ["17", "21"] java-distribution: ["temurin"] + senzingsdk-version: [production-v4, staging-v4] steps: - name: checkout repository @@ -37,7 +38,7 @@ jobs: - name: install Senzing SDK uses: senzing-factory/github-action-install-senzing-sdk@v3 with: - senzingsdk-repository-path: ${{ secrets.SENZING_OSX_BETA_REPOSITORY }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: configure environment run: | diff --git a/.github/workflows/java-linux-snippets.yaml b/.github/workflows/java-linux-snippets.yaml index 022bb31..abd2380 100644 --- a/.github/workflows/java-linux-snippets.yaml +++ b/.github/workflows/java-linux-snippets.yaml @@ -24,6 +24,7 @@ jobs: matrix: java-version: ["17", "21"] java-distribution: ["temurin"] + senzingsdk-version: [production-v4, staging-v4] steps: - name: checkout repository @@ -40,8 +41,7 @@ jobs: uses: senzing-factory/github-action-install-senzing-sdk@v3 with: packages-to-install: "senzingsdk-runtime senzingsdk-setup" - senzingsdk-repository-package: ${{ secrets.SENZING_APT_BETA_STAGING_REPOSITORY_PACKAGE }} - senzingsdk-repository-path: ${{ secrets.SENZING_APT_BETA_STAGING_REPOSITORY_URL }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: build with Maven env: diff --git a/.github/workflows/java-windows-snippets.yaml b/.github/workflows/java-windows-snippets.yaml index 7e89742..5da9223 100644 --- a/.github/workflows/java-windows-snippets.yaml +++ b/.github/workflows/java-windows-snippets.yaml @@ -22,6 +22,7 @@ jobs: matrix: java-version: ["17", "21"] java-distribution: ["temurin"] + senzingsdk-version: [production-v4, staging-v4] steps: - name: checkout repository @@ -37,7 +38,7 @@ jobs: - name: install Senzing SDK uses: senzing-factory/github-action-install-senzing-sdk@v3 with: - senzingsdk-repository-path: ${{ secrets.SENZING_WIN_BETA_REPOSITORY }} + senzingsdk-version: ${{ matrix.senzingsdk-version }} - name: build with Maven run: |