From 16af4758578e5106562511bc4f2c1fd47b3c12c8 Mon Sep 17 00:00:00 2001 From: Inaki Villar Date: Wed, 12 Jun 2024 09:28:45 -0700 Subject: [PATCH] remove integration test playground --- .../workflows/integ-test-caching-confiw.yml | 98 ------------------- 1 file changed, 98 deletions(-) delete mode 100644 .github/workflows/integ-test-caching-confiw.yml diff --git a/.github/workflows/integ-test-caching-confiw.yml b/.github/workflows/integ-test-caching-confiw.yml deleted file mode 100644 index 6b7f02c..0000000 --- a/.github/workflows/integ-test-caching-confiw.yml +++ /dev/null @@ -1,98 +0,0 @@ -name: Test detect java toolchains - -on: - workflow_call: - inputs: - cache-key-prefix: - type: string - runner-os: - type: string - default: '["ubuntu-latest", "windows-latest", "macos-latest"]' - skip-dist: - type: boolean - default: false - -env: - SKIP_DIST: ${{ inputs.skip-dist }} - GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: injection--${{ inputs.cache-key-prefix }} - -env: - SKIP_DIST: ${{ inputs.skip-dist }} - DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} - -jobs: - seed-build: - strategy: - fail-fast: false - matrix: - os: ${{fromJSON(inputs.runner-os)}} - runs-on: ${{ matrix.os }} - steps: - - name: Checkout sources - uses: actions/checkout@v4 - - name: Initialize integ-test - uses: ./.github/actions/init-integ-test - - - name: Setup Gradle - uses: ./setup-gradle - with: - develocity-url: "https://ge.solutions-team.gradle.com/" - develocity-plugin-version: "3.17.1" - develocity-injection-enabled: true - - - - name: Build using Gradle wrapper - id: gradle - working-directory: .github/workflow-samples/java-toolchain - run: | - echo "${{ env.DEVELOCITY_PLUGIN_VERSION }}" - ./gradlew help - - - name: Check Build Scan url is captured - if: ${{ !steps.gradle.outputs.build-scan-url }} - uses: actions/github-script@v7 - with: - script: | - core.setFailed('No Build Scan detected') - - - inject-develocity-with-access-key-with-input-actions-and-wrapper: - env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} - strategy: - fail-fast: false - matrix: - gradle: [current] - os: ${{fromJSON(inputs.runner-os)}} - plugin-version: [3.16.2, 3.17.4] - runs-on: ${{ matrix.os }} - steps: - - name: Checkout sources - uses: actions/checkout@v4 - - name: Initialize integ-test - uses: ./.github/actions/init-integ-test - - name: Setup Java - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 8 - - name: Setup Gradle - id: setup-gradle - uses: ./setup-gradle - with: - cache-read-only: false # For testing, allow writing cache entries on non-default branches - gradle-version: ${{ matrix.gradle }} - develocity-injection-enabled: true - develocity-url: 'https://ge.solutions-team.gradle.com' - develocity-plugin-version: ${{ matrix.plugin-version }} - - name: Build using Gradle wrapper - id: gradle - working-directory: .github/workflow-samples/java-toolchain - run: | - ./gradlew help - - name: Check Build Scan url is captured - if: ${{ !steps.gradle.outputs.build-scan-url }} - uses: actions/github-script@v7 - with: - script: | - core.setFailed('No Build Scan detected')