generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for dependency graph failures
- Loading branch information
Showing
3 changed files
with
221 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
.github/workflows/integ-test-dependency-graph-failures.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
name: Test dependency graph | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
cache-key-prefix: | ||
type: string | ||
runner-os: | ||
type: string | ||
default: '["ubuntu-latest"]' | ||
download-dist: | ||
type: boolean | ||
default: false | ||
|
||
env: | ||
DOWNLOAD_DIST: ${{ inputs.download-dist }} | ||
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: dependency-graph-${{ inputs.cache-key-prefix }} | ||
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true | ||
|
||
jobs: | ||
unsupported-gradle-version-failure: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Download distribution if required | ||
uses: ./.github/actions/download-dist | ||
- name: Setup Gradle for dependency-graph generate | ||
uses: ./ | ||
with: | ||
gradle-version: 7.0.1 | ||
dependency-graph: generate | ||
- name: Run with unsupported Gradle version | ||
working-directory: .github/workflow-samples/groovy-dsl | ||
run: | | ||
if gradle assemble; then | ||
echo "Expected build to fail with Gradle 7.0.1" | ||
exit 1 | ||
fi | ||
unsupported-gradle-version-warning: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Download distribution if required | ||
uses: ./.github/actions/download-dist | ||
- name: Setup Gradle for dependency-graph generate | ||
uses: ./ | ||
with: | ||
gradle-version: 7.0.1 | ||
dependency-graph: generate | ||
- name: Run with unsupported Gradle version | ||
working-directory: .github/workflow-samples/groovy-dsl | ||
run: gradle assemble | ||
|
||
insufficient-permissions-failure: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
continue-on-error: true | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Download distribution if required | ||
uses: ./.github/actions/download-dist | ||
- name: Setup Gradle for dependency-graph generate | ||
uses: ./ | ||
with: | ||
dependency-graph: generate-and-submit | ||
- name: Run with insufficient permissions | ||
working-directory: .github/workflow-samples/groovy-dsl | ||
run: ./gradlew assemble | ||
|
||
insufficient-permissions-warning: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Download distribution if required | ||
uses: ./.github/actions/download-dist | ||
- name: Setup Gradle for dependency-graph generate | ||
uses: ./ | ||
with: | ||
dependency-graph: generate-and-submit | ||
- name: Run with insufficient permissions | ||
working-directory: .github/workflow-samples/groovy-dsl | ||
run: ./gradlew assemble |