This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch gha-testing in repository https://gitbox.apache.org/repos/asf/datasketches-memory.git
commit daa95c47c61a57bcff90b8686874a78924af49e4 Author: Lee Rhodes <[email protected]> AuthorDate: Thu Dec 12 13:11:06 2024 -0800 For GHA testing --- .github/workflows/auto-jdk-matrix.yml | 10 ++++++---- .github/workflows/auto-os-matrix.yml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-jdk-matrix.yml b/.github/workflows/auto-jdk-matrix.yml index 5593052..ac2444e 100644 --- a/.github/workflows/auto-jdk-matrix.yml +++ b/.github/workflows/auto-jdk-matrix.yml @@ -7,7 +7,7 @@ on: workflow_dispatch: env: - MAVEN_OPTS: -Xmx1g -Xms1g + MAVEN_OPTS: -Xmx4g -Xms1g jobs: build: @@ -16,9 +16,11 @@ jobs: strategy: fail-fast: false + matrix: + jdk: [ 21 ] env: - JDK_VERSION: 21 + JDK_VERSION: {{ matrix.jdk }} steps: - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" @@ -30,13 +32,13 @@ jobs: run: > cat .github/workflows/auto-jdk-matrix.yml - - name: Setup Java + - name: Install Matrix Java uses: actions/setup-java@v4 with: + java-version: {{ matrix.jdk }} distribution: 'temurin' java-package: jdk architecture: x64 - java-version: 21 - name: Cache local Maven repository uses: actions/cache@v4 diff --git a/.github/workflows/auto-os-matrix.yml b/.github/workflows/auto-os-matrix.yml index 28227c2..58992fa 100644 --- a/.github/workflows/auto-os-matrix.yml +++ b/.github/workflows/auto-os-matrix.yml @@ -1,4 +1,4 @@ -name: DataSketches-Memory Auto OS Matrix Test & Install +name: DataSketches-Memory Java 21 Auto OS Matrix Test & Install on: pull_request: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
