Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 867
Extract repeated directory-check assertions into check-dir.sh helper#1127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+66
−133
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -42,10 +42,7 @@ jobs: | ||
| # https://github.com/actions/cache/issues/454#issuecomment-840493935 | ||
| run: | | ||
| gradle downloadDependencies --no-daemon -p __tests__/cache/gradle1 | ||
| if [ ! -d ~/.gradle/caches ]; then | ||
| echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| bash __tests__/check-dir.sh "$HOME/.gradle/caches" | ||
| gradle-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -66,12 +63,7 @@ jobs: | ||
| java-version: '11' | ||
| cache: gradle | ||
| - name: Confirm that ~/.gradle/caches directory has been made | ||
| run: | | ||
| if [ ! -d ~/.gradle/caches ]; then | ||
| echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/.gradle/caches/ | ||
| run: bash __tests__/check-dir.sh "$HOME/.gradle/caches" | ||
| maven-save: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -93,10 +85,7 @@ jobs: | ||
| - name: Create files to cache | ||
| run: | | ||
| mvn verify -f __tests__/cache/maven/pom.xml | ||
| if [ ! -d ~/.m2/repository ]; then | ||
| echo "::error::The ~/.m2/repository directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| bash __tests__/check-dir.sh "$HOME/.m2/repository" | ||
| maven-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -117,12 +106,7 @@ jobs: | ||
| java-version: '11' | ||
| cache: maven | ||
| - name: Confirm that ~/.m2/repository directory has been made | ||
| run: | | ||
| if [ ! -d ~/.m2/repository ]; then | ||
| echo "::error::The ~/.m2/repository directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/.m2/repository | ||
| run: bash __tests__/check-dir.sh "$HOME/.m2/repository" | ||
| sbt-save: | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| @@ -155,25 +139,13 @@ jobs: | ||
| - name: Check files to cache on macos-latest | ||
| if: matrix.os == 'macos-15-intel' | ||
| run: | | ||
| if [ ! -d ~/Library/Caches/Coursier ]; then | ||
| echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/Library/Caches/Coursier" | ||
| - name: Check files to cache on windows-latest | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| if [ ! -d ~/AppData/Local/Coursier/Cache ]; then | ||
| echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/AppData/Local/Coursier/Cache" | ||
| - name: Check files to cache on ubuntu-latest | ||
| if: matrix.os == 'ubuntu-latest' | ||
| run: | | ||
| if [ ! -d ~/.cache/coursier ]; then | ||
| echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| if: matrix.os == 'ubuntu-22.04' | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/.cache/coursier" | ||
| sbt-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| @@ -200,28 +172,13 @@ jobs: | ||
| - name: Confirm that ~/Library/Caches/Coursier directory has been made | ||
| if: matrix.os == 'macos-15-intel' | ||
| run: | | ||
| if [ ! -d ~/Library/Caches/Coursier ]; then | ||
| echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/Library/Caches/Coursier | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/Library/Caches/Coursier" | ||
| - name: Confirm that ~/AppData/Local/Coursier/Cache directory has been made | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| if [ ! -d ~/AppData/Local/Coursier/Cache ]; then | ||
| echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/AppData/Local/Coursier/Cache | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/AppData/Local/Coursier/Cache" | ||
| - name: Confirm that ~/.cache/coursier directory has been made | ||
| if: matrix.os == 'ubuntu-latest' | ||
| run: | | ||
| if [ ! -d ~/.cache/coursier ]; then | ||
| echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/.cache/coursier | ||
| if: matrix.os == 'ubuntu-22.04' | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/.cache/coursier" | ||
brunoborges marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| gradle1-save: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -246,10 +203,7 @@ jobs: | ||
| # https://github.com/actions/cache/issues/454#issuecomment-840493935 | ||
| run: | | ||
| gradle downloadDependencies --no-daemon -p __tests__/cache/gradle1 | ||
| if [ ! -d ~/.gradle/caches ]; then | ||
| echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| bash __tests__/check-dir.sh "$HOME/.gradle/caches" | ||
| gradle1-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -271,12 +225,7 @@ jobs: | ||
| cache: gradle | ||
| cache-dependency-path: __tests__/cache/gradle1/*.gradle* | ||
| - name: Confirm that ~/.gradle/caches directory has been made | ||
| run: | | ||
| if [ ! -d ~/.gradle/caches ]; then | ||
| echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/.gradle/caches/ | ||
| run: bash __tests__/check-dir.sh "$HOME/.gradle/caches" | ||
| gradle2-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -298,11 +247,7 @@ jobs: | ||
| cache: gradle | ||
| cache-dependency-path: __tests__/cache/gradle2/*.gradle* | ||
| - name: Confirm that ~/.gradle/caches directory has not been made | ||
| run: | | ||
| if [ -d ~/.gradle/caches ]; then | ||
| echo "::error::The ~/.gradle/caches directory exists unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash __tests__/check-dir.sh "$HOME/.gradle/caches" absent | ||
| maven1-save: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -325,10 +270,7 @@ jobs: | ||
| - name: Create files to cache | ||
| run: | | ||
| mvn verify -f __tests__/cache/maven/pom.xml | ||
| if [ ! -d ~/.m2/repository ]; then | ||
| echo "::error::The ~/.m2/repository directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| bash __tests__/check-dir.sh "$HOME/.m2/repository" | ||
| maven1-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -350,12 +292,7 @@ jobs: | ||
| cache: maven | ||
| cache-dependency-path: __tests__/cache/maven/pom.xml | ||
| - name: Confirm that ~/.m2/repository directory has been made | ||
| run: | | ||
| if [ ! -d ~/.m2/repository ]; then | ||
| echo "::error::The ~/.m2/repository directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/.m2/repository | ||
| run: bash __tests__/check-dir.sh "$HOME/.m2/repository" | ||
| maven2-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| @@ -377,11 +314,7 @@ jobs: | ||
| cache: maven | ||
| cache-dependency-path: __tests__/cache/maven2/pom.xml | ||
| - name: Confirm that ~/.m2/repository directory has not been made | ||
| run: | | ||
| if [ -d ~/.m2/repository ]; then | ||
| echo "::error::The ~/.m2/repository directory exists unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash __tests__/check-dir.sh "$HOME/.m2/repository" absent | ||
| sbt1-save: | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| @@ -415,25 +348,13 @@ jobs: | ||
| - name: Check files to cache on macos-latest | ||
| if: matrix.os == 'macos-15-intel' | ||
| run: | | ||
| if [ ! -d ~/Library/Caches/Coursier ]; then | ||
| echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/Library/Caches/Coursier" | ||
| - name: Check files to cache on windows-latest | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| if [ ! -d ~/AppData/Local/Coursier/Cache ]; then | ||
| echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/AppData/Local/Coursier/Cache" | ||
| - name: Check files to cache on ubuntu-latest | ||
| if: matrix.os == 'ubuntu-22.04' | ||
| run: | | ||
| if [ ! -d ~/.cache/coursier ]; then | ||
| echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/.cache/coursier" | ||
| sbt1-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| @@ -461,28 +382,13 @@ jobs: | ||
| - name: Confirm that ~/Library/Caches/Coursier directory has been made | ||
| if: matrix.os == 'macos-15-intel' | ||
| run: | | ||
| if [ ! -d ~/Library/Caches/Coursier ]; then | ||
| echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/Library/Caches/Coursier | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/Library/Caches/Coursier" | ||
| - name: Confirm that ~/AppData/Local/Coursier/Cache directory has been made | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| if [ ! -d ~/AppData/Local/Coursier/Cache ]; then | ||
| echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/AppData/Local/Coursier/Cache | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/AppData/Local/Coursier/Cache" | ||
| - name: Confirm that ~/.cache/coursier directory has been made | ||
| if: matrix.os == 'ubuntu-22.04' | ||
| run: | | ||
| if [ ! -d ~/.cache/coursier ]; then | ||
| echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls ~/.cache/coursier | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/.cache/coursier" | ||
| sbt2-restore: | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| @@ -510,22 +416,10 @@ jobs: | ||
| - name: Confirm that ~/Library/Caches/Coursier directory has not been made | ||
| if: matrix.os == 'macos-15-intel' | ||
| run: | | ||
| if [ -d ~/Library/Caches/Coursier ]; then | ||
| echo "::error::The ~/Library/Caches/Coursier directory exists unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/Library/Caches/Coursier" absent | ||
| - name: Confirm that ~/AppData/Local/Coursier/Cache directory has not been made | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| if [ -d ~/AppData/Local/Coursier/Cache ]; then | ||
| echo "::error::The ~/AppData/Local/Coursier/Cache directory exists unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/AppData/Local/Coursier/Cache" absent | ||
| - name: Confirm that ~/.cache/coursier directory has not been made | ||
| if: matrix.os == 'ubuntu-22.04' | ||
| run: | | ||
| if [ -d ~/.cache/coursier ]; then | ||
| echo "::error::The ~/.cache/coursier directory exists unexpectedly" | ||
| exit 1 | ||
| fi | ||
| run: bash "$GITHUB_WORKSPACE/__tests__/check-dir.sh" "$HOME/.cache/coursier" absent | ||
This file contains hidden or 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,39 @@ | ||
| #!/bin/sh | ||
| # Assert whether a directory exists, for use in the e2e cache workflows. | ||
| # | ||
| # Usage: check-dir.sh <dir> [present|absent] | ||
| # | ||
| # present (default): fail if <dir> does NOT exist, otherwise list its contents. | ||
| # absent: fail if <dir> DOES exist. | ||
| # | ||
| # Call with already-expanded paths (e.g. "$HOME/.gradle/caches") to avoid | ||
| # tilde-expansion pitfalls. | ||
| set -eu | ||
| if [ "$#" -lt 1 ]; then | ||
| echo "Usage: check-dir.sh <dir> [present|absent]" >&2 | ||
| exit 2 | ||
| fi | ||
| dir=$1 | ||
| mode=${2:-present} | ||
| case "$mode" in | ||
| present) | ||
| if [ ! -d "$dir" ]; then | ||
| echo "::error::The $dir directory does not exist unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ls "$dir" | ||
| ;; | ||
| absent) | ||
| if [ -d "$dir" ]; then | ||
| echo "::error::The $dir directory exists unexpectedly" | ||
| exit 1 | ||
| fi | ||
| ;; | ||
| *) | ||
| echo "::error::Unknown mode '$mode' (expected 'present' or 'absent')" | ||
| exit 1 | ||
| ;; | ||
| esac |
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.